conda env list
conda config --envs
conda config --set auto_activate_base false
conda remove --name myenv --all
conda create -n py27 python=2.7 anaconda
conda env remove -n ENV_NAME
https://repo.anaconda.com/pkgs/main/linux-64/
you can export your Anaconda environment using:
conda env export > environment.yml
And recreate it using:
conda env create -f environment.yml
eval "$(conda shell.bash hook)"
conda activate <env-name>
- conda install pytorch=0.4.1 -c pytorch
- conda install cuda80 -c pytorch
- free channel에서 찾는다. -c free
conda activate cenv
conda install ipykernel
ipython kernel install --user --name=<any_name_for_kernel>
conda deactivate