- 주피터랩 설치 & 설명 블로그
https://heekangpark.github.io/etc/jupyter-lab
이번학기에 주피터랩을 사용하게되어서 미리 설치해오라는 과제를 받았습니다.
ChatGPT한테 물어보니 잘 알려주네요!
JupyterLab은 데이터 과학 분야에서 인기 있는 대화식 개발 환경 중 하나입니다. JupyterLab은 Jupyter Notebook의 대안으로 개발되었으며, 사용자 친화적인 인터페이스와 다양한 기능을 제공합니다.
JupyterLab은 여러 종류의 셸과 언어를 지원하며, 이를 통해 Python, R, Julia 등 다양한 언어를 사용할 수 있습니다. 또한, JupyterLab은 웹 브라우저에서 실행되므로 사용자는 별도의 설치 없이 모든 작업을 수행할 수 있습니다.
JupyterLab은 또한 다양한 확장 기능을 제공하며, 이를 통해 사용자는 자신에게 필요한 기능을 추가할 수 있습니다. 예를 들어, 특정 언어나 도구를 위한 플러그인을 설치하여 해당 언어나 도구를 사용할 수 있습니다. 또한, 사용자 지정 테마, 스타일 등을 적용할 수도 있습니다.
JupyterLab은 대화식으로 코드를 작성하고 실행하며, 이를 통해 사용자는 즉각적인 피드백을 받을 수 있습니다. 또한, 시각화 및 데이터 분석 등을 위한 다양한 도구를 제공하므로 데이터 과학 분야에서 널리 사용됩니다.
chatGPT한테 물어보기 전에 여러 블로그를 찾아봤는데 방법도 다양하고 부가적인 설정이 많더라구요. chatGPT는 정말 간단하게 딱 기본세팅의 설치방법만 알려줘서 좋은 것같습니다.
To install Jupyter Lab on Windows, you can follow these steps:
Install Python: Go to the official Python website and download the latest version of Python for Windows. Follow the installation instructions.
Open a command prompt: Press the Windows key + R, type "cmd", and press Enter to open a command prompt.
Install Jupyter Lab: Type the following command in the command prompt and press Enter:
pip install jupyterlab
Launch Jupyter Lab: Type the following command in the command prompt and press Enter:
jupyter lab
This will launch Jupyter Lab in your default web browser.
Alternatively, you can use the Anaconda distribution of Python, which comes with Jupyter Lab pre-installed. You can download Anaconda from the official website and follow the installation instructions. After installation, you can launch Jupyter Lab from the Anaconda Navigator or by typing "jupyter lab" in the Anaconda Prompt.