web-dev-qa-db-fra.com

Impossible d'exécuter le bloc-notes jupyter sous Ubuntu

J'ai installé le cahier jupyter en utilisant:

Sudo pip3 install jupyter

Cela a semblé fonctionner mais j'ai eu l'erreur:

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

Quand je le lance:

jupyter notebook

Je reçois l'erreur:

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

J'ai fait face à un problème similaire. Voici ce que j'ai fait pour résoudre le problème (sous Ubuntu 16.04):

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

ipython semblait être le problème, sa suppression corrigeait donc le problème.

Je suis maintenant capable de lancer jupyter notebook

2
akashah

Avez-vous essayé de l'exécuter en tant que root?

Sudo jupyter notebook --allow-root

ou connectez-vous en tant que root et exécutez la commande suivante:

jupyter notebook --allow-root
0
An0n