jupyter notebook
在Arch Linux的虚拟环境中执行时,发生以下错误。
Error executing Jupyter command 'notebook': [Errno 2] No such file or directory
我的Python版本是3.6,我的Jupyter版本是4.3.0
我该如何解决这个问题?
-bash::command not found
jupyter notebook
在Arch Linux的虚拟环境中执行时,发生以下错误。
Error executing Jupyter command 'notebook': [Errno 2] No such file or directory
我的Python版本是3.6,我的Jupyter版本是4.3.0
我该如何解决这个问题?
-bash::command not found
Answers:
在我看来,安装似乎以某种方式弄乱了。尝试运行:
# 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]"
很混乱。
对我来说,问题是安装后命令jupyter notebook
更改为jupyter-notebook
。
如果不起作用,请尝试python -m notebook
,如果将其打开,请先将其关闭,然后
export PATH=$PATH:~/.local/bin/
再打开一个新的终端以刷新路径,然后重试jupyter notebook
。
最后,如果还是不行,就来看看vim /usr/local/bin/jupyter-notebook
,vim /usr/local/bin/jupyter
,vim /usr/local/bin/jupyter-lab
(如果你有JupyterLab)和编辑#!Python版本在文件的顶部,以配合您尝试使用Python的版本。例如,我在Mac上安装了Python 3.8.2,但是这些文件仍然具有3.6版本的路径,因此我将其编辑为#!/Library/Frameworks/Python.framework/Versions/3.8/bin/python3
在Ubuntu 18.10上,以下命令帮助了我。
sudo apt-get install jupyter-notebook
在Mac OS上无法安装Jupyter
运行jupyter笔记本:-> python -m笔记本
使用以下命令,如果您使用的是pip3,请用pip3替换pip3
pip install --upgrade --force-reinstall jupyter
这对我有用。
Error executing Jupyter command 'notebook': [Errno 2] No such file or directory
whereis jupyter
可行,请尝试一下,输入 终端,删除这些文件并重新安装jupyter。
pip install "ipython[notebook]"
和pip install jupyter