配置环境

  1. 概述 如果平台提供的镜像没有满足您的要求,可以尝试参考下述步骤制作。
  2. 创建 python 环境 镜像中预安装了 anaconda ,可以使用 anaconda 创建需要的 python 环境,例如 python 3.10 。创建步骤:

Step 1:构建一个虚拟环境名为:my_env,Python 版本为 3.10

  
conda create --name demo python=3.10

Step 2: 激活环境

  
source activate my_env

Step 3: 验证

  
python --version

  1. pip 配置源

pip 国内常用的源

清华源:https://pypi.tuna.tsinghua.edu.cn/simple

阿里源:https://mirrors.aliyun.com/pypi/simple

临时使用 使用 pip 的时候在后面加上 -i 参数,指定 pip 源。例如:

  
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

命令行配置 在 pip 版本 (>=10.0.0) 的时候可以使用命令行配置

  
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
 
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
pip config set global.trusted-host mirrors.aliyun.com

查看 pip 源配置

  
pip config list

配置文件配置 修改 ~/.config/pip/pip.conf 配置文件,以清华源为例,写入如下内容:

  
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn