吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3914|回复: 7
收起左侧

[Python 转载] 将pip换国内源的python代码

  [复制链接]
ghoob321 发表于 2020-7-23 10:14
有时pip下载时慢的要死换成清华源也不行,那么换成其他国内源试试。
直接上代码
[Python] 纯文本查看 复制代码
import os
path = os.getenv('APPDATA')   #获取环境变量
data = """[global]
timeout = 6000
index-url = [url]index-url = [url]http://pypi.douban.com/simple[/url][/url]
trusted-host = pypi.douban.com
"""
#  写入的数据
folder_path = path + "\\pip"
file_path = path + "\\pip\\pip.ini"
folder = os.path.exists(folder_path)  #判断文件夹是否存在
if not folder:
    os.mkdir(folder_path)  #创建文件夹
f = open(file_path, 'w')   #写文件
f.write(data)
f.close()


是不是飞快了?

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

nnnm 发表于 2020-7-23 11:50
本帖最后由 nnnm 于 2020-7-23 11:53 编辑

[Python] 纯文本查看 复制代码
pip install pip -U
pip config set global.index-url http://pypi.douban.com/simple
xuqng99 发表于 2020-7-23 10:38
minshenyao 发表于 2020-7-23 10:44
Windfall 发表于 2020-7-23 11:25
这个可以 正愁怎么去找地址 这个好了感谢楼主分享
who_unknown 发表于 2020-7-30 21:14
nnnm 发表于 2020-7-23 11:50
[mw_shl_code=python,true]pip install pip -U
pip config set global.index-url http://pypi.douban.com/ ...

1->pip被卸载了。
2->not "http",but "https"
相信无限活宝 发表于 2020-8-31 03:08
这个可以看看
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 03:37

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表