Curso Python

Curso introducción a Python

c:\>python -m venv c:\path\to\myenv

Activar entorno virtual (en nuestro caso <env> equivale a path\to\myenv):

Plataforma Shell Comando para activar virtual environment
Unix bash/zsh $ source <venv>/bin/activate
Windows cmd.exe C:\><venv>\Scripts\activate.bat
  • Instalar librerias de jupyter:
c:\>pip install jupyter notebook
  • Permitir este entorno como kernel en jupyter
c:\>python -m ipykernel install --user --name <nombre_entorno> --display-name "Nombre en jupyter"
  • Descargar cuaderno N1 - Introducción a python.ipynb
  • Lanzar jupyter
c:\>jupyter notebook