1. 주피터 노트북 설치
$ sudo apt -y install ipython
$ sudo -H pip3 install jupyter
$ jupyter notebook --generate-config
$ sudo nano ~/.jupyter/jupyter_notebook_config.py
c = get_config()
c.NotebookApp.ip = ''
c.NotebookApp.allow_origin = ''
c.NotebookApp.allow_remote_access = True
c.NotebookApp.notebook_dir = 'pythonex'
c.NotebookApp.port = 8000
$ jupyter notebook
2. Kernel 열람/편집
jupyter kernelspec list
sudo jupyter kernelspec uninstall python2
sudo python -m pip install ipykernel
sudo python -m ipykernel install --user
3. 주피터 노트북 제거
$ sudo -H python -m pip uninstall jupyter_core jupyter_qtconsole nbformat nbconvert notebook
$ sudo -H python3 -m pip uninstall jupyter_core jupyter_qtconsole nbformat nbconvert notebook
$ sudo -H pip install pip-autoremove
$ pip-autoremove jupyter -y
4. 아나콘다 설치
$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh
$ bash Anaconda3-5.1.0-Linux-x86_64.sh
5. 설치확인
$ source ~/.bashrc // bashrc에 등록한것을 활성해 준다
$ conda --version // 버전확인
$ conda update conda // 아나콘다 업데이트
6. 터미널에 (base) 나타나는 것 해제
conda config --show | grep auto_activate_base //결과 True
conda config --set auto_activate_base False
7. 필요시 삭제방법
$ rm -rf ~/anaconda3
$ vi ~/.bashrc // # added by Anaconda3 installer 제거
$ rm -rf ~/.condarc ~/.conda ~/.continuum
8. spyder 설치
sudo apt-get update
sudo apt-get install spyder
sudo -H pip install spyder
# 우분투에서 모든 라이브러리 설치 및 업그레이드
답글삭제pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U