주피터노트북에서 자동완성(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
'Statistics > BSA' 카테고리의 다른 글
230327 / BSA04. 다양한 형태의 자료 파일 작업 속도 비교 (0) | 2023.04.02 |
---|---|
230322 / BSA03. 데이터 분석 주요 과정 살펴보기 (0) | 2023.03.26 |
230320 / BSA03. 효율적인 메모리 관리와 프로그램 작성 (0) | 2023.03.26 |
230315 / BSA02. SNS 데이터 가져오기, 진행바(progress bar) 추가하기 (0) | 2023.03.26 |
230315 / BSA02. 다양한 금융자료들 간 환율 비교, 1분 단위로 사이트 접속하여 데이터 가져오기 (0) | 2023.03.26 |