文章

安装Anaconda并创建Python虚拟环境

安装Anaconda并创建Python虚拟环境

安装部署

  1. 下载脚本执行
1
wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh && chmode +x Anaconda3-2020.11-Linux-x86_64.sh && ./Anaconda3-2020.11-Linux-x86_64.sh
  1. 配置环境变量
1
vim /etc/profile
1
export PATH=$PATH:$HOME/anaconda3/bin
  1. 重载
1
source /etc/profile

配置镜像源

anaconda镜像(清华)

1
2
3
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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

pip源(临时使用)

1
2
pip install numpy -i 镜像源网址
pip install numpy -i https://mirrors.aliyun.com/pypi/simple/
本文由作者按照 CC BY 4.0 进行授权