我们之前装第三方模块的方式:
pip3 install django
这种方式需要到国外的官网去下载,速度很慢
为了以后安装模块更加方便,整点配置,以后安装模块,自动去配置好的源下载
windows
1.文件管理器文件路径地址栏敲:%APPDATA% 回车,快速进入 C:\Users\电脑用户\AppData\Roaming 文件夹中
2.新建pip文件夹并在文件夹中新建pip.ini 配置文件
3.新增pip.ini 配置文件内容
新增内容如下:这里我们使用的是阿里云源
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
[install]
use-mirrors =true
mirrors =https://mirrors.aliyun.com/pypi/simple
trusted-host =mirrors.aliyun.com文章来源:https://www.toymoban.com/news/detail-812240.html
以后再任意路径安装模块,都会自动使用阿里云源文章来源地址https://www.toymoban.com/news/detail-812240.html
到了这里,关于PIP永久换源的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!