Respuestas:
Abra la terminal y escriba:
sudo apt install python3-notebook jupyter jupyter-core python-ipykernel
Para iniciar el servidor portátil, ejecute el siguiente comando:
jupyter notebook
Debería ver Jupyter Notebook abierto en su navegador web.
Ubuntu 17.04 y 17.10
En Ubuntu 17.04 y versiones posteriores, Jupyter Notebook está disponible en los repositorios predeterminados de Ubuntu y se puede instalar rápida y fácilmente con apt. Abra la terminal y escriba:
sudo apt install jupyter-notebook jupyter-core python-ipykernel
python-ipykernel es necesario para ejecutar programas de Python 2.x en Jupyter Notebook, que de lo contrario solo admite Python 3.x.
Para iniciar el servidor portátil, ejecute el siguiente comando:
jupyter notebook
Debería ver Jupyter Notebook abierto en su navegador web
Ubuntu 16.04 y anterior
Google Colaboratory es el entorno gratuito de portátiles Jupyter de Google que no requiere configuración y se ejecuta completamente en la nube.
jupyter-troubleshoot
lo ayudará a solucionar este problema.
apt-get install jupyter-notebook
, como se sugiere aquí: stackoverflow.com/questions/42648610/…
Lo instalé usando
pip install jupyter
( pip3 si Python3 está instalado; también, asegúrese de tener acceso de root, es decir, conectado a la terminal como root @ ... )
y para dependencias de python
apt-get install build-essential python3-dev
En el escritorio ubuntu 14.04.3 LTS. Estoy en python3.
No parece posible usar solo apt-get.
apt-file find jupyter ## returns no results
Para 16.04:
sudo apt-get install python-pip
pip install --upgrade pip ## secret sauce -- pip fails otherwise
sudo pip install jupyter
entonces
jupyter notebook
Reemplace 'pip' con 'pip3' para usar con Python3.
Según la recomendación oficial aquí , deberíamos usar:
python -m pip install jupyter
python3 -m pip install jupyter
Después de este comando y todo lo anterior, tuve un problema con el error de permiso. Para resolverlo debemos usar el siguiente comando:
python -m pip install jupyter --user
python3 -m pip install jupyter --user
sudo -H pip3 install jupyter
(con pip3
, no pip
) funcionó para mí después de muchos otros enfoques. Lo hice en ubuntu linux con python 3.5.3 integrado en lavano chromebook c330. También instaló spyder y numerosos comandos favoritos como "localizar".
$jupyter notebook
Error al ejecutar el comando 'notebook' de Jupyter: [Errno 2] No existe tal archivo o directorio