pip换源

文章目录

pip换源详解

一、pip是什么

pip 是 Python 中的标准库管理器。它允许你安装和管理不属于 Python标准库 的其它软件包

二、pip换源

国内比较好的PyPI源库有

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple

豆瓣:http://pypi.douban.com/simple

1.1临时换源

tex 复制代码
#清华源
pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip install markdown -i https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip install markdown -i http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip install markdown -i http://pypi.douban.com/simple/

临时换源就是在pip install 库 后面直接加上 -i 换源地址

1.2 永久换源

tex 复制代码
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/# 换回默认源pip config unset global.index-url

设置完成以后直接使用pip intall 库名 即可

相关推荐
如若1236 天前
pip install tensorflow==1.12.2(python=3.5)
python·tensorflow·pip
wangjinyu1244196 天前
Subprocess check_output returned non-zero exit status 1
开发语言·python·pip
养一只Trapped_beast7 天前
pip install transformers教程
pip·transformers
三劫散仙8 天前
conda 依赖固定和 pip 依赖使用的区别
python·conda·pip
新手小袁_J10 天前
Python实现简单的缺失值处理(超详细教程)
开发语言·python·信息可视化·numpy·pandas·matplotlib·pip
新手小袁_J15 天前
Python的Matplotlib库应用(超详细教程)
开发语言·python·numpy·matplotlib·pip·基础知识
亦梦亦醒乐逍遥16 天前
conda/pip基本常用命令理解与整理
conda·pip
floenrce21 天前
pip安装paddle失败
python·pip
计算机学姐22 天前
基于Python的社交音乐分享平台
开发语言·vue.js·python·mysql·django·flask·pip
新手小袁_J23 天前
Python的列表基础知识点(超详细流程)
开发语言·python·numpy·pip·基础知识·基础知识点