目前国内优python质仓库源
阿里云 http://mirrors.aliyun.com/pypi/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
Pycharm设置
- Pycharm 进入项目设置
-
添加 仓库源 -
在使用pip的时候加参数-i https://mirrors.aliyun.com/pypi/simple 例如:pip install pyserial -i https://mirrors.aliyun.com/pypi/simple/,这样就会从阿里云这边的镜像去安装pyserial库。
本地配置文件设置(windows)
(1)新建 pip 配置文件夹,直接在user用户目录中创建一个名为 pip 的文件夹( 即%HOMEPATH%\pip),如下图所示:
(2)接着在 pip 文件夹中创建一个名为 pip 的文本文件(后缀名由" .txt "改为 " .ini "),格式如下所示:
文件内容如下: [global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com
#trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
验证:修改完成后保存,启动cmd。
1)可以使用 pip -v list
在库的列表的最下方会有警告“WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored.”说明仓库已经切换到阿里了。
2)使用 " pip install xxx "(xxx为你要下载的包名),即可默认使用国内源下载。
例如:python -m pip install --upgrade pip
|