返回首页

帮助与服务

配置环境
  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
3、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


现在注册,即可享受多款产品免费体验
立即注册
故障赔偿 无理由退款 快速备案 专业服务 服务支持