我安装了anaconda,当我键入jupyter笔记本时,出现以下错误。
Error executing Jupyter command 'notebook': [Errno 2] No such file or directory
经过大量Google搜索后,找到以下命令 (适用于Python 3)
pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
以上命令将重新安装PyPi的所有内容。 。即使执行此命令后,我仍然遇到以下错误
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/usr/local/lib/python3.5/dist-packages/attrs-19.1.0.dist-info'
您能帮我解决这个问题吗?
答案 0 :(得分:1)
我尝试了很多事情,但是在原始命令前加上简单的“ sudo”命令可以帮助我解决此问题。
sudo pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
答案 1 :(得分:0)
IPython导致了此问题。因此,卸载它会是一个更好的选择。
sudo apt-get remove ipython
sudo apt-get purge ipython
sudo apt-get autoremove
pip install jupyter
现在执行jupyter笔记本命令...