You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
baseService/ETL/修改全局镜像源.txt

28 lines
779 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Linux/Mac os 环境中
配置文件位置在 ~/.pip/pip.conf如果不存在创建该目录和文件
mkdir ~/.pip
vi ~/.pip/pip.conf
[global]
index-url = https://pypi.douban.com/simple
[install]
trusted-host = pypi.douban.com
====================================================================================
Windows下你需要在当前对用户目录下C:\Users\Administrator\pip
创建一个 pip.ini,内容:
[global]
index-url = https://pypi.douban.com/simple
[install]
trusted-host = pypi.douban.com
====================================================================================
# 查看 镜像地址:
$ pip3 config list
global.index-url='https://pypi.douban.com/simple'
install.trusted-host='pypi.douban.com'