virtualenv jupyter notebook 커널 추가 및 삭제
2019. 10. 20. 17:48ㆍ꿀팁 분석 환경 설정/Jupyter Notebook & Lab
도움이 되셨다면, 광고 한번만 눌러주세요. 블로그 관리에 큰 힘이 됩니다 ^^
Conda로 하는 경우는 아래 URL 참고
https://data-newbie.tistory.com/113
설치 방법
## internet 있는 경우
pip install virtualenv
## internet 없는 경우
curl --location --output virtualenv-X.X.X.tar.gz https://github.com/pypa/virtualenv/tarball/X.X.X
tar xvfz virtualenv-X.X.X.tar.gz
create a virtual environment
##
virtualenv .venv
## local
### 환경 버전은 앞에있는 python에 의존하게 됨
cd pypa-virtualenv-YYYYYY
python virtualenv.py myVE
## Local 설치시 주의사항
암튼 virtualenv 사용 못하니 script를 이용하라는 말인듯
The virtualenv.py script is not supported if run without the necessary pip/setuptools/virtualenv distributions available locally. All of the installation methods above include a
virtualenv_support directory alongside virtualenv.py which contains a complete set of pip and setuptools distributions, and so are fully supported.
## 가상환경 들어가기
1)
source .venv/bin/activate
2)
. .venv/bin/activate
## 가상환경 버전 확인하기
which python
## 주피터에 kernel list 확인하기
jupyter kernelspec list
## 주피터에 kernel에 추가하기
가상환경 진입하고 나서 (source .venv/bin/activate)
ipython kernel install --user --name=.venv
## 패키지 설치하기
## Source 접속하고 나서 설치
pip install ####
## 주피터에 kernel 지우기
jupyter kernelspec uninstall yourKernel
## 만든 가상환경 제거하기
## https://virtualenv.pypa.io/en/latest/userguide/
deactivate
rm -r /path/to/ENV
728x90
'꿀팁 분석 환경 설정 > Jupyter Notebook & Lab' 카테고리의 다른 글
[ Python ] Jupyter Lab GPU DashBoard (2) | 2020.01.17 |
---|---|
Jupyter Notebook에서 Notebook 이름 가져오기 (0) | 2019.10.27 |
jupyter notebook port 는 열려있는데, 작동안할 때 (0) | 2019.09.09 |
jupyter notebook 코드 숨기기 (0) | 2019.08.17 |
Jupyter 메모리 체크하는 패키지와 모니터링하는 패키지소개 (0) | 2019.07.24 |