[ipython-notebook] ImportError : 이름이 notebook.notebookapp 인 모듈이 없습니다.

콘솔에 입력 ipython notebook하고 얻을 때이 오류에 대해 사람들을 추천하는 것은 무엇입니까?

ImportError : 이름이 notebook.notebookapp 인 모듈이 없습니다.

?

pip로 ipython 노트북을 설치했는데 실제로 무슨 일이 일어나고 있는지 모르겠습니다.



답변

4.0 이상인 경우 https://github.com/jupyter/notebook 과 별도로 노트북 앱을 설치해야합니다.

pip 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

답변

이 두 명령은 대부분의 문제를 해결합니다.

sudo pip install --upgrade setuptools pip
sudo pip install --upgrade "ipython[all]"


답변

파이썬 버전 2를 사용하는 경우

핍 설치 jupyter

파이썬 3.x를 사용하는 경우

pip3 설치 jupyter

안전 측면에 있도록 노트북 모듈이 설치되어 있는지 확인하십시오.

핍 설치 노트북

또는

pip3 설치 notebok


답변

이 시도:

pip install jupyter

그것은 나를 위해 일했습니다.


답변