Skip to content

Instantly share code, notes, and snippets.

@danielmoralesp
Created June 6, 2020 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielmoralesp/6a65b3f8e03e521ab933b074a207fd09 to your computer and use it in GitHub Desktop.
Save danielmoralesp/6a65b3f8e03e521ab933b074a207fd09 to your computer and use it in GitHub Desktop.
Jupyter Commands
pip3 --version ## Para revisar la version de pip
sudo pip3 install virtualenv ## Para instalar virtualenv
virtualenv primer_proyecto ## Para crear la carpeta del entorno virtual
cd primer_proyecto ## para acceder a la carpeta del entorno virtual
source bin/activate ## Para activar el entorno virtual
pip3 install jupyter ## para instalar jupyter dentro del entorno virtual
jupyter notebook ## Para levantar el servidor local con jupyter notebook
deactivate ## Para desactivar el entorno virtual
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment