Python pip源快速永久配置

Python pip源快速永久配置

直接输入命令行

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config set install.trusted-host mirrors.aliyun.com
  • 可以将阿里云的网址改成自己想要的镜像源网址。
  • 第一条命令是设置默认源(更改后面的网址即可)
  • 第二条命令是信任主机域名(更改后面的域名即可)
  • 在Windows以及Linux均适用(必须安装好pip)

你可能感兴趣的:(pip,python)