¿Es posible instalar Jupyter Notebook a través de apt-get install
? Por ejemplo, podemos instalar numpy usando apt-get install python-numpy
.
fuente
¿Es posible instalar Jupyter Notebook a través de apt-get install
? Por ejemplo, podemos instalar numpy usando apt-get install python-numpy
.
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 notebook
Error al ejecutar el comando 'notebook' de Jupyter: [Errno 2] No existe tal archivo o directoriojupyter-troubleshoot
lo ayudará a solucionar este problema.apt-get install jupyter-notebook
, como se sugiere aquí: stackoverflow.com/questions/42648610/…Lo instalé usando
( 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
En el escritorio ubuntu 14.04.3 LTS. Estoy en python3.
fuente
pip install --user pkg_name
.No parece posible usar solo apt-get.
Para 16.04:
entonces
Reemplace 'pip' con 'pip3' para usar con Python3.
fuente
Instalarlo usando
Una vez completada la instalación, use el siguiente comando
fuente
Según la recomendación oficial aquí , deberíamos usar:
Después de este comando y todo lo anterior, tuve un problema con el error de permiso. Para resolverlo debemos usar el siguiente comando:
fuente
sudo -H pip3 install jupyter
(conpip3
, nopip
) 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".fuente