Conda manage your Python environment

Conda

Python version of Conda main user environment management Anaconda

Conda popular website

https://www.anaconda.com/distribution/#linux
https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

Conda installation

  • Centos7

yum install conda

  • Anaconda Download

https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

Conda Configuration

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

Conda install Python Version

conda create -n py34 python=3.4

Conda install Python module

conda install -n py34 numpy

Conda switch Python Version

conda activation py34

Conda Common Commands

conda create -n pyname python=version

conda list

conda info -e

conda remove -n pyname

Guess you like

Origin blog.51cto.com/justinit/2470678
Recommended