python installing boto3 - could not find a version even though pypi shows th index(Python安装boto3-找不到版本,即使pypi显示此索引)
本文介绍了Python安装boto3-找不到版本,即使pypi显示此索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
尝试在Mac上从python
安装boto3
时出现以下错误
pip3 install boto
Looking in indexes: https://pypi.org
ERROR: Could not find a version that satisfies the requirement boto (from versions: none)
ERROR: No matching distribution found for boto
当我检查PyPi.org时,我看到boto3包的结果。
- 出现此错误的原因是什么?
- 我可以使用的任何其他索引/选项?
我尝试从GitHub下载软件包,然后从源安装,但在boto3/requirements.txt中安装依赖项之一时遇到同样的问题。
推荐答案
我能够通过使用--extra-index-url
标志使用其他索引解决此问题。
pip3 install --extra-index-url https://pypi.python.org/simple boto3
Looking in indexes: https://pypi.org, https://pypi.python.org/simple
Collecting boto3
Downloading boto3-1.17.28-py2.py3-none-any.whl (131 kB)
|████████████████████████████████| 131 kB 1.1 MB/s
Collecting s3transfer<0.4.0,>=0.3.0
Downloading s3transfer-0.3.4-py2.py3-none-any.whl (69 kB)
|████████████████████████████████| 69 kB 2.1 MB/s
Collecting botocore<1.21.0,>=1.20.28
Downloading botocore-1.20.28-py2.py3-none-any.whl (7.3 MB)
|████████████████████████████████| 7.3 MB 4.9 MB/s
Collecting jmespath<1.0.0,>=0.7.1
Downloading jmespath-0.10.0-py2.py3-none-any.whl (24 kB)
Collecting urllib3<1.27,>=1.25.4
Downloading urllib3-1.26.4-py2.py3-none-any.whl (153 kB)
|████████████████████████████████| 153 kB 3.9 MB/s
Collecting python-dateutil<3.0.0,>=2.1
Downloading python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB)
|████████████████████████████████| 227 kB 2.3 MB/s
Collecting six>=1.5
Downloading six-1.15.0-py2.py3-none-any.whl (10 kB)
Installing collected packages: urllib3, jmespath, six, python-dateutil, botocore, s3transfer, boto3
Successfully installed boto3-1.17.28 botocore-1.20.28 jmespath-0.10.0 python-dateutil-2.8.1 s3transfer-0.3.4 six-1.15.0 urllib3-1.26.4
这篇关于Python安装boto3-找不到版本,即使pypi显示此索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Python安装boto3-找不到版本,即使pypi显示此索引
基础教程推荐
猜你喜欢
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01