Skip to content

Instantly share code, notes, and snippets.

@jcaristy
Last active September 23, 2017 02:15
Show Gist options
  • Save jcaristy/1ba0f234a00ef0a11685e772da494aa5 to your computer and use it in GitHub Desktop.
Save jcaristy/1ba0f234a00ef0a11685e772da494aa5 to your computer and use it in GitHub Desktop.
[Python: Conda Comandos] #python
#Documentación
#https://conda.io/docs/user-guide/tasks/manage-environments.html
#Listar los enviroments
conda info --envs
conda env list
#Crear ambiente especificando la version de python
conda create -n myenv python=3.4
#Activar un enviroment
source activate myenv
#Listar paquetes instalados
conda list -n myenv
conda list
#Reconstruir
nano ~/.bash_profile
code ~/.bash_profile
source ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment