Linux/Ubuntu

[Ubuntu] pip3 Jupyter notebook(주피터 노트북) 설치 / 삭제

반나무 2021. 4. 7. 12:05

주피터 노트북 설치 및 완전 삭제를 위한 글

처음해보니 너무너무 어려웠다.


20.04

1. 파이썬 설치

2. 주피터 노트북 설치

pip3 install notebook

3. 주피터 시스템 전체 삭제

python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat

4. 문제점

파이썬 버전을 계속 낮게 잡음

주피터 노트북을 업데이트 하거나 삭제 후 재설치해야함.

 

주피터 노트북 삭제가 되지 않을 때

주피터 노트북을 삭제해도 jupyter를 입력하면 usage가 나옴.

이게 20.04 버전이라 그런지는 모르겠지만

처음에 snap이라는곳에 쥬피터가 이미 깔려있었던거 같다.

그래서 계속 구버전 주피터를 읽어오는 문제점이 있다.

 


참고문헌

주피터 노트북 설치 : jupyter.org/install

 

Project Jupyter

The Jupyter Notebook is a web-based interactive computing platform. The notebook combines live code, equations, narrative text, visualizations, interactive dashboards and other media.

jupyter.org

주피터 노트북 삭제 : stackoverflow.com/questions/33052232/how-to-uninstall-jupyter

 

How to uninstall jupyter

I have been trying to uninstall jupyter I have tried the following commands pip uninstall jupyter pip3 uninstall jupyter and rm -rf /Users/$user/Library/Jupyter/* Even after running all these

stackoverflow.com

https://light-tree.tistory.com/111

 

[파이썬] 우분투 주피터 jupyter 원격 접속 서버 설정하는법, 오류 고치기

1. jupyter 에서도 같은 파일만 아니면 한명 이상의 유저가 서버에 접근해서 작업을 실행할 수 있습니다. 2. 제 OS환경은 우분투 16.04 버전입니다. 윈도우도 방화벽 해제랑 jupyter_notebook_config.py 파일

light-tree.tistory.com

https://stackoverflow.com/questions/35313876/after-installing-with-pip-jupyter-command-not-found

 

반응형