问题
azkaban编译问题
git clone 报错protocol error: bad pack header
jenkins上解决obs上传问题
wget 下载东西报证书错误
安装完jenkins后发现时区不对
本地刷新excel执行脚本报错解决
记录同网段的两个服务器可以使用内网ping通,但是具体服务访问失败问题
解决一个服务器搭建两个网站后,只有一个域名,通过域名访问两个网站
利用配置yum源安装redis后,启动失败报:Could not connect to Redis
使用sftp上传报错:没有权限
在linux数据库命令框中修改密码后,navicat等连接还是只能使用原密码连接
编译pika报error: unrecognized command line option '-m
编译pika报make: *** [Makefile:229: /opt/pika/third/ro
pip 安装依赖太慢问题
debian如何换源问题
adb删除手机自带软件报错
容器自动退出问题
解决域名通过nginx访问无法上传附件报错
解决http利用nginx重定向至https的问题
解决win下文件或文件夹无法删除问题
nginx实现负载均衡及轮询
-
+
首页
pip 安装依赖太慢问题
## pip 安装依赖太慢问题 - what: pip 安装依赖太慢问题 - where: centos7 - when: 2022.3.24 - who: jiaorongtao - why: 记录 - how: ### 升级 ``` Python3 -m pip install --upgrade pip sudo python -m pip install --upgrade pip # 或者适用这个命令,两个的效果是一样的 sudo pip install -U pip #查版本 pip -V ``` ### 常用国内源 ``` 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ ``` ### 使用 ``` #直接 -i 加 url 即可 pip(或pip3) install 依赖名 -i http://pypi.douban.com/simple ``` 若报错: ![](/media/202203/2022-03-24_221456_385225.png) ``` #以阿里云源为例 root@1456953df0b6:/# pip install foliant foliantcontrib.init -i http://mirrors.aliyun.com/pypi/simple/ Looking in indexes: http://mirrors.aliyun.com/pypi/simple/ WARNING: The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host mirrors.aliyun.com'. ``` ``` pip install 依赖名 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com ``` ### 永久使用 **方法一:** ``` #全局换源(pip的版本>10) pip config set global.index-url 源链接 root@1456953df0b6:/# pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/ root@1456953df0b6:/# pip config set install.trusted-host mirrors.aliyun.com root@1456953df0b6:/# pip config set global.timeout 6000 Writing to /root/.config/pip/pip.conf #writing代表写入成功 root@f1406b1e0b7d:/# cat /root/.config/pip/pip.conf [global] index-url = http://mirrors.aliyun.com/pypi/simple/ timeout = 6000 [install] trusted-host = mirrors.aliyun.com #查pip当前源 root@1456953df0b6:/# pip config list global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple/' root@1456953df0b6:/# ``` **方法二:** ``` #配源 mkdir -p ~/.pip/ touch pip.conf vim pip.conf [global] index-url = http://pypi.douban.com/simple [install] trusted-host=pypi.douban.com 或 [global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com ``` 方法三: ``` #脚本换源 mkdir ~/.pip/ cat > ~/.pip/pip.conf <<EOF [global] index-url = https://pypi.mirrors.ustc.edu.cn/simple/ [install] trusted-host = https://pypi.mirrors.ustc.edu.cn/ EOF ```
JRT
2022年3月24日 23:14
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
Markdown文件
分享
链接
类型
密码
更新密码