Arch Linux の仮想環境で実行するとjupyter notebook
、次のエラーが発生しました。
Error executing Jupyter command 'notebook': [Errno 2] No such file or directory
私のPythonバージョンは3.6、Jupyterバージョンは4.3.0です
この問題を解決するにはどうすればいいでしょうか?
ベストアンサー1
どうやらインストールがうまくいかなかったようです。以下を実行してみてください:
# 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]"
。