230320 / BSA03. 가상환경에서 주피터랩 설치하기, 주피터노트북에서 자동완성 기능 구현하기

주피터노트북에서 자동완성(autocomplete) 기능 구현

pip install jupyter

# 확장프로그램을 pip를 이용해 설치
pip install jupyter_contrib_nbextensions

# nbextension이 주피터노트북에서 보일 수 있도록
jupyter contrib nbextension install --user

# 자동완성 설치
jupyter nbextension enable hinterland/hinterland

 

가상환경에서 주피터랩 설치

# d:\jupyterlab 경로에 jupyterlab이라는 이름의 가상환경 생성
mkdir d:\jupyterlab
python -m venv d:\jupyterlab

# 현재의 명령 프롬프트 세션에서 가상환경을 활성화
Scripts\activate.bat

# 현재 활성화된 가상환경 내에 jupyterlab 패키지 설치
(jupyterlab) D:\jupyterlab > pip install jupyterlab

# 가상환경 종료(비활성화)하고, 기존의 시스템 python 환경으로 돌아가기
(jupyterlab) D:\jupyterlab > deactivate

# 가상환경이 활성화된 상태에서 주피터랩을 실행
(jupyterlab) D:\jupyterlab > jupyter lab

# hvplot과 panel 라이브러리 설치
pip install hvplot panel