执行`jupyter notebook`时出错(没有这样的文件或目录)

时间:2017-03-07 12:41:10

标签: python-3.x jupyter-notebook

当我在Arch Linux中的虚拟环境中执行jupyter notebook时,发生以下错误。

Error executing Jupyter command 'notebook': [Errno 2] No such file or directory

我的python版本是3.6,而我的jupyter版本是4.3.0

我已经搜索了很多内容,但我无法找到与此问题相关的任何内容。

提前致谢。

12 个答案:

答案 0 :(得分:121)

在我看来,好像安装已经搞砸了。尝试运行:

# For Python 2
pip install --upgrade --force-reinstall --no-cache-dir jupyter
# For Python 3
pip3 install --upgrade --force-reinstall --no-cache-dir jupyter

这应该重新安装PyPi的所有内容。这个 应该 解决问题,因为我认为运行pip install "ipython[notebook]"搞砸了。

答案 1 :(得分:36)

对我来说,问题是安装后命令jupyter notebook已更改为jupyter-notebook

答案 2 :(得分:15)

尝试此命令:python -m IPython notebook

向提供解决方案Milannju的GitHub用户here致信。

答案 3 :(得分:11)

This为我工作。 (Ubuntu 18.04 LTS上的Python 3.6)

export PATH=$PATH:~/.local/bin/

答案 4 :(得分:6)

在Ubuntu 18.10上,以下命令帮助了我。

sudo apt-get install jupyter-notebook

答案 5 :(得分:3)

使用以下命令,如果您使用pip3,请用pip3替换pip

pip install --upgrade --force-reinstall jupyter

这对我有用。

答案 6 :(得分:3)

由于安装了pip和pip3.6 pip install --upgrade --force-reinstall jupyter 失败了,所以我用了

pip3.6 install --upgrade --force-reinstall jupyter

它对我有用。 此安装后,运行jupyter notebook也有效。

答案 7 :(得分:3)

在Mac OS上无法安装Jupyter

要运行jupyter笔记本:-> python -m笔记本

答案 8 :(得分:0)

对我来说,修复只是运行pip install notebook

不知何故,原来的木星装置在路上被塞了。

答案 9 :(得分:0)

我正试图在Ubuntu上使用VirtualBox。最后在其他一些帖子上说它试试jupyter-notebook。我试过这个,它告诉我做sudo apt-get jupyter-notebook并安装了一堆东西。现在,如果我输入命令jupyter-notebook,它就可以了。

答案 10 :(得分:0)

如果您使用Fedora安装python3-notebook解决了我的问题。

# dnf install python3-notebook

答案 11 :(得分:0)

如果您当前处于虚拟环境,请停用它;

运行以下命令:

python -m pip install jupyter

jupyter笔记本