当我输入控制台ipython notebook
并获得
ImportError:没有名为notebook.notebookapp的模块
我用pip安装了ipython笔记本,我真的不知道发生了什么。
答案 0 :(得分:267)
对于4.0及更高版本您需要从https://github.com/jupyter/notebook
单独安装笔记本应用程序pip install jupyter
答案 1 :(得分:16)
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
答案 2 :(得分:7)
这两个命令将为您解决大多数问题:
sudo pip install --upgrade setuptools pip
sudo pip install --upgrade "ipython[all]"
答案 3 :(得分:2)
如果您使用的是python版本2
pip安装jupyter
如果使用python 3.x
pip3安装jupyter
为了安全起见,还请检查是否已安装笔记本模块
pip安装笔记本
或
pip3安装notebok
答案 4 :(得分:2)
这对我有用:
pip install -U notebook
答案 5 :(得分:0)
试试这个:
pip install jupyter
这对我有用。
答案 6 :(得分:0)
安装特定版本:
pip install jupyter
升级 jupyter
sudo pip3 install --upgrade jupyter
在 Window 10 中出现依赖错误 使用代码:easy_install 而不是 pip install
easy_install jupyter
使用简易安装升级
sudo easy_install --upgrade jupyter
在 OSX 系统上安装模块: 使用代码:brew install 而不是 pip install
brew install jupyter
不使用 Pip :
sudo apt-get install -y jupyter
在 CentOS7 或 Linux Fedora 上:
yum -y install jupyter
或者在 Fedora 上试试
sudo dnf install jupyter
如果 Homebrew 在 macOS 上搞砸了你的路径的命令:
python -m pip install jupyter
对于 Python3 MacOs Homebrew 螺丝
python3 -m pip install jupyter
从列表 MacO 中验证模块
pip freeze | grep jupyter
在 Anaconda 上作为你的 python 包管理器执行
conda install -c anaconda jupyter