`jupyter notebook` command not found.

Rhseung·2024년 2월 17일
0

tips

목록 보기
3/18

문제

jupyter notebook을 사용하기 위한 라이브러리를 pip로 깔았으나(pip install jupyter) jupyter notebook 명령어를 실행하려 하면

jupyter notebook command not found.

jupyter의 인자로 notebook이 존재하지 않았었음.

해결

pip list로 관련 라이브러리를 전부 uninstall하고

python -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient 

pip3로 설치.

pip3 install jupyter

0개의 댓글