下载安装 anaconda
清华 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
中科大 https://mirrors.ustc.edu.cn/anaconda/archive/
以目前最新的 anaconda 版本为例
# 下载
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh
# 添加可执行权限
chmod +x Anaconda3-5.3.1-Linux-x86_64.sh
# 安装
./Anaconda3-5.3.1-Linux-x86_64.sh
- 安装路径最好自己再设置一些,默认路径是在
/root/anaconda3
之中,我自己是放在了:/usr/local/anaconda3
- 在选项do you wish the installer to initialize Anaconda3 in your /root/.bashrc?记得输入
yes
不然后面需要自己写配置,我自己感觉挺麻烦的,对新手不太友好。 - 在一路enter和yes(是否安装VSCode除外,根据自己来选择)之后先关闭然后打开终端:
source ~/.bashrc
- 验证一下conda是否安装成功:
conda list
- 验证python环境:
python -V
设置国内镜像
# 设置 Conda 国内源
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 的使用
# conda create -n 环境名称 python=3 包1 包2 包3 ...
conda create -n yhtf python=3 tensorflow numpy keras
# 激活环境
conda activate yhtf
# 取消环境
conda deactivate
# 安装 python 包
# conda install 包
conda install pillow