当前位置: 首页 > 知识库问答 >
问题:

python - google、aws 这些云服务厂商有提供 pypi 的 镜像源吗?

潘坚白
2023-05-17

国内有很多镜像源地址,比如清华 pypi 镜像源地址:https://pypi.tuna.tsinghua.edu.cn/simple

那么,google、aws 这些云服务厂商有提供 pypi 的 镜像源吗?有的话,地址是啥?

让 chatGPT 给了我两个,都是无法使用的

pip install lxml -i https://pypi.awsbjx.com/simple/


pip install lxml -i https://pypi.googlemirrors.cn/simple/
root@publisher-directed-crawling-server-gcp-prod-5bc74b8c99-hstn2:/code# pip install lxml -i https://pypi.awsbjx.com/simple/
Looking in indexes: https://pypi.awsbjx.com/simple/
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f0c1e4abb20>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f0c1e4abe50>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f0c1e4abf10>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
^CERROR: Operation cancelled by user
^C
root@publisher-directed-crawling-server-gcp-prod-5bc74b8c99-hstn2:/code# ^C
root@publisher-directed-crawling-server-gcp-prod-5bc74b8c99-hstn2:/code# ^C
root@publisher-directed-crawling-server-gcp-prod-5bc74b8c99-hstn2:/code# ^C
root@publisher-directed-crawling-server-gcp-prod-5bc74b8c99-hstn2:/code# ^C
root@publisher-directed-crawling-server-gcp-prod-5bc74b8c99-hstn2:/code# pip install lxml -i https://pypi.googlemirrors.cn/simple/
Looking in indexes: https://pypi.googlemirrors.cn/simple/
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f3fae29bb20>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f3fae29be50>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f3fae29bf10>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f3fae2d83a0>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f3fae2d8550>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/lxml/
ERROR: Could not find a version that satisfies the requirement lxml (from versions: none)
ERROR: No matching distribution found for lxml

共有3个答案

孟宏才
2023-05-17

自有国情在此.jpg

杜霍英
2023-05-17

在安装python package时候链接的https://pypi.org 是国外的网站,速度相对比较慢。可以直接链接国内的镜像网站来安装,是常以下的一些国内镜像资源:
阿里云 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/

使用方法

  1. pip 直接 -i 加 url 即可!如下:
    pip install web.py -i http://pypi.douban.com/simple #如果报错: 使用命令—— pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
  2. 配置编译器, pycharm 为例
    打开File》》setting》》Project:PythonProject, click Python Interpreter
    Click "+" to open available package dialog, click Manage Repositories, change https://pypi.python.org/simple to 镜像站点
    然后通过, 点选available package找到要安装的package来安装
王辉
2023-05-17

AWS应该没有公共镜像,只有私有镜像: https://docs.aws.amazon.com/codeartifact/latest/ug/python-con...

 类似资料:
  • 警告 PyPI 源已暂时移除并重定向到 TUNA PyPI,详见 PyPI 镜像变更通知。 地址 https://mirrors.ustc.edu.cn/pypi/ 说明 PyPI(pip) 软件源 注意 使用说明 临时使用 pip install -i https://mirrors.ustc.edu.cn/pypi/web/simple package 设为默认 升级 pip 到最新的版本

  • 我希望用Python实现一个基于SAML 2.0的服务提供者。 我的Web应用程序目前都是Flask应用程序。我计划制作一个Flask蓝图/装饰器,允许我将单点登录功能放入预先存在的应用程序中。 我已经深入研究了python saml,但不幸的是,存在一些不值得解决的依赖性问题,因为我有太多预先存在的服务器/应用程序,这些服务器/应用程序的环境将不兼容。 PySAML2看起来可以工作,但是几乎没有

  • 本镜像为 Ruby China 官方镜像,源为 cache.ruby-lang.org 用于改善国内 Ruby 安装的速度,同时这个镜像是实时更新的,在全国有 150 个 CDN 节点加速。 https://cache.ruby-china.com 特点 直接基于 CDN 对 Ruby 官方的文件进行镜像,并长久存储在国内; 简单的架构,无手工或定时更新之类的繁琐事情,能确保服务 99.9% 的稳

  • 我正在尝试在Weblogic 12c.2.1上配置服务提供商,指向NetIq Identity Manager。 另外,我正在尝试部署一个简单的jsp应用程序来测试它。 到现在为止,这就是我所做的: 网络博客 创建了身份验证提供程序(安全领域- 完成这些步骤后,我部署了应用程序并尝试访问,希望它会将我重定向到NetIq身份管理器进行登录。相反,我得到了以下错误: 错误401——未授权 来自RFC

  • pypi 镜像每 5 分钟同步一次。 临时使用 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package 注意,simple 不能少, 是 https 而不是 http 设为默认 升级 pip 到最新的版本 (>=10.0.0) 后进行配置: pip install pip -U pip config set glo

  • 我想简化这个过程,并建议用户通过Google/Facebook/Twitter的oAuth提供商在我的API上进行身份验证。 现在我还不清楚它是如何工作的。例如,我的一个想法--Facebook将发布自己的accessToken,并将其传递回我的API。基于此accessToken,我的API将发出自己的accessToken,并将其传递回客户端应用程序(AngularJS)。或者我应该将Face