当我键入控制台 ipython notebook并得到
ipython notebook
Import Error: 没有名为 notebook.notbookapp 的模块
?
我用 pip 安装了 ipython 笔记本,真的不知道发生了什么。
我在升级 Python 时也遇到了同样的问题。这是一个与最新的 4版本相关的 bug,我建议你切换回稳定版本 3.2.1:
4
3.2.1
pip uninstall -y ipython pip install ipython==3.2.1
-y
对于4.0及以上版本,您需要将笔记本应用程序与 https://github.com/jupyter/notebook分开安装
pip install jupyter
conda install jupyter将安装最新的 jupyter 以及其他所需的依赖项
conda install 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
这两个命令将为您解决大多数问题:
sudo pip install --upgrade setuptools pip sudo pip install --upgrade "ipython[all]"
试试这个:
对我来说很有效。
如果您使用的是 python 版本2
皮普安装木桥
在使用 python3.x 的情况下
Pip3安装 Jupyter
为了安全起见,还要检查笔记本电脑模块是否安装
安装笔记本电脑
或者
这就是它对我起作用的原因:
pip install -U notebook
安装特定版本:
升级木星
sudo pip3 install --upgrade jupyter
在 Windows10中获取依赖性错误 使用代码: easy _ install 代替 pip install
easy_install jupyter
使用易于安装的升级
sudo easy_install --upgrade jupyter
在 OSX 系统上安装模块: 使用代码: 使用 brewinstall 代替 pip install
brew install jupyter
不使用 Pip:
sudo apt-get install -y jupyter
在 CentOS7或 Linux Fedora 上:
yum -y install jupyter
或者用软呢帽试试
sudo dnf install jupyter
返回文章页面如果自制程序在 MacOS 上搞砸了你的路径,命令如下:
python -m pip install jupyter
用于 Python 3 MacO 自制螺丝
python3 -m pip install jupyter
从列表 MacO 验证模块
pip freeze | grep jupyter
作为 Python 包管理器在 Anaconda 上执行
conda install -c anaconda jupyter