1. 下载
到清华镜像源下载miniconda安装程序 https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
挑选合适的下载,例如:wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py37_4.8.3-Linux-x86_64.sh
2. 安装
bash Miniconda3-py37_4.8.3-Linux-x86_64.sh
- 遇到Do you accept the license terms? [yes|no]
回车
q键退出阅读license
yes - Miniconda3 will now be installed into this location:
/home/hfy/miniconda3
回车默认 - 可以选择不初始化,使用conda时需要先
source ~/miniconda3/bin/activate
Do you wish the installer to initialize Miniconda3
by running conda init? [yes|no] - 启动
source ~/miniconda3/bin/activate
- 添加镜像源
1
2
3
4
5conda 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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
conda config --set show_channel_urls true
3. 常用命令
- 查看版本
conda --version
- 创建环境
conda create --name your_env_name <python=版本> <python包>
- 删除环境
conda remove --name your_env_name --all
- 查看创建环境
conda env list
- 进入某个环境
conda activate env_name
- 退出环境
conda deactivate