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 库名 即可

相关推荐
hljqfl2 天前
pip安装第三方库,但PyCharm中却无法识别
ide·pycharm·pip
Monee..2 天前
linux里安装pip和conda
linux·conda·pip
豆芽8194 天前
Conda配置Python环境
python·conda·pip
MobiCetus4 天前
有关pip与conda的介绍
linux·windows·python·ubuntu·金融·conda·pip
Eiceblue5 天前
Python 在Word中查找并替换文本
vscode·python·word·pip
situnima5 天前
Python包管理完全指南:pip常用命令与最佳实践
开发语言·python·pip
Melody20505 天前
pip install cryptacular卡住,卡在downloading阶段
pip
W_chuanqi5 天前
为pip设置国内镜像源
python·pip
kcarly6 天前
python 、pip、conda、poetry的关系
python·conda·pip·poetry
伊织code8 天前
uv - 概念 [官方文档翻译]
服务器·python·pip·uv·概念·concept