AUTO Remove
pip uninstall jupyter
pip3 uninstall jupyter
rm -rf /Users/$user/Library/Jupyter/*
pip install pip-autoremove
pip-autoremove jupyter -y
쥬피터 설치
jupyter kernelspec list
pip install jupyter
python3.7 -m pip install jupyter_contrib_nbextensions
쥬피터 커널제거
$jupyter kernelspec list
$jupyter kernelspec uninstall {kernelname}
** 만약 지금 사용하고 있는 Jupyter의 Python 버전이 3.5 라면 해당 작성글의
2. jupyter 설치 부분에서
$sudo pip3 install notebook
명령어를 수행할 때 pip3의 python 버전이 3.5가 아닌 3.7로 업그레이드한 후에 config작업을 진행하면 python이 3.7 버전으로 실행된다.
https://suho413.tistory.com/entry/python-Upgrade-%EB%B0%A9%EB%B2%9535-to-37
python Upgrade 방법(3.5 to 3.7)
기존 python 3.5(aws ec2 Ubuntu를 설치하면 3.5가 설치되어있다.)를 3.7로 업그레이드 하는방법이다. 1. python 3.7 설치 $sudo apt-get update $sudo apt-get install software-properties-common $sudo add-apt..
suho413.tistory.com
**