답변:
4.0 이상인 경우 https://github.com/jupyter/notebook 과 별도로 노트북 앱을 설치해야합니다.
pip install jupyter
pip3 install jupyter
Python 3이 기본 시스템 인 경우
ipyton notebook <notebook>
당신을 위해 작동하지 않습니다, 그 실행 아래 댓글에서 언급 @meduz jupyter notebook <notebook
대신 작동 할 수 있습니다. 그로 인해 문제가 해결되었습니다.
pip3.6 install jupyter
있고 일을했습니다
conda install jupyter
다른 필수 종속성과 함께 최신 Jupyter를 설치합니다.
다음 패키지가 다운로드됩니다 :
package | build
---------------------------|-----------------
mistune-0.7 | py27_0 186 KB
jinja2-2.8 | py27_0 263 KB
jupyter_core-4.0.3 | py27_0 25 KB
tornado-4.2.1 | py27_0 515 KB
jupyter_client-4.0.0 | py27_0 88 KB
nbformat-4.0.0 | py27_0 112 KB
ipykernel-4.0.3 | py27_0 111 KB
nbconvert-4.0.0 | py27_0 266 KB
jupyter_console-4.0.0 | py27_0 22 KB
notebook-4.0.1 | py27_0 4.2 MB
qtconsole-4.0.0 | py27_0 120 KB
ipywidgets-4.0.2 | py27_0 93 KB
jupyter-1.0.0 | py27_0 2 KB
------------------------------------------------------------
Total: 6.0 MB
ipython을 업그레이드 할 때 동일한 문제가 발생했습니다. 이것은 최신 4
버전에 연결된 버그이므로 안정적인 버전으로 다시 전환하는 것이 좋습니다 3.2.1
.
pip uninstall -y ipython
pip install ipython==3.2.1
-y
옵션은 상호 작용없이 "예 : 제거하고 싶습니다"라고 표시합니다pip install jupyter
.
jupyter notebook
명령 대신 명령 을 사용하는 것이 좋습니다 ipython notebook
.
pip install jupyter
오류를 수정하고 노트북을 시작하기에 충분합니다.