在我的 Mac 上尝试从
boto3
安装 python
时,出现以下错误
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
对我来说,添加
--upgrade
后就解决了。
最终命令:
pip3 install boto3 --upgrade
之前:
$pip3 install boto3
Collecting boto3
Using cached boto3-1.21.7-py3-none-any.whl (132 kB)
ERROR: Could not find a version that satisfies the requirement botocore<1.25.0,>=1.24.7 (from boto3) (from versions: none)
ERROR: No matching distribution found for botocore<1.25.0,>=1.24.7 (from boto3)
根据官方文档安装 boto3 运行以下命令:
pip install boto3
不是
pip install boto
参考:https://boto3.amazonaws.com/v1/documentation/api/latest/guide/quickstart.html#install-boto3
我可以通过运行以下命令来解决问题:
pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org boto3
它解决了我的问题,希望对其他人也有用。
对于 Windows 10 上的 VSCode,py -m pip install --extra-index-url https://pypi.python.org/simple boto3