pyenv

Comandos a ejecutar en la terminal para la preparación del entorno python con múltiples versiones:

# Creación de entorno virtual
python -m venv ec

# Activar entorno virtual
source ec/bin/activate

# Instalar dependencias
pip install --upgrade pip
pip install specutils jupyter astropy pillow numpy matplotlib pyqt5

# Ejecución
jupyter notebook

# Salir del entorno virtual
deactivate