Last active
September 23, 2017 02:15
-
-
Save jcaristy/1ba0f234a00ef0a11685e772da494aa5 to your computer and use it in GitHub Desktop.
[Python: Conda Comandos] #python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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