web-dev-qa-db-ja.com

Ubuntuでjupyterノートブックを実行できません

次を使用してjupyterノートブックをインストールしました。

Sudo pip3 install jupyter

動作しているように見えましたが、エラーが発生しました:

The directory '/home/user1/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with Sudo, you may want Sudo's -H flag.
The directory '/home/user1/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with Sudo, you may want Sudo's -H flag

実行すると:

jupyter notebook

エラーが表示されます:

Error executing Jupyter command 'notebook': [Errno 8] Exec format error
1
MCG Code

同様の問題に直面しました。これは私が問題を解決するためにしたことです(Ubuntu 16.04で):

Sudo apt-get remove ipython
Sudo apt-get purge ipython 
Sudo apt-get autoremove
pip install jupyter

ipythonが問題のように見えたので、ipythonを削除すると問題が修正されました。

jupyter notebookを実行できるようになりました

2
akashah

ルートとして実行しようとしましたか?

Sudo jupyter notebook --allow-root

または、rootとしてログインし、次のコマンドを実行します。

jupyter notebook --allow-root
0
An0n