作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Not working
root@49161b16e779:/# aws --version
aws-cli/1.11.121 Python/3.5.2 Linux/4.10.0-32-generic botocore/1.5.84
root@49161b16e779:/# aws s3 ls s3://my.bucket.path
'AWSHTTPSConnection' object has no attribute 'ssl_context'
Working fine
tada@tada-VirtualBox:~$ aws --version
aws-cli/1.11.13 Python/3.5.2 Linux/4.10.0-32-generic botocore/1.4.70
最佳答案
这是由 AWS CLI 中的错误引起的,在 https://github.com/boto/botocore/issues/1258#issuecomment-321787841 中注明。 ,这使得它与较新版本的请求不兼容。如果安装 awscli
使用 Pip,您不会看到错误,因为您从 Pip 获得的版本包含一个旧的、兼容的 Requests 版本。但是,如果您使用 Apt(或者可能是其他一些程序包管理器)安装了 AWS CLI,您将获得一个使用系统请求模块的 AWS CLI 版本,从而使您面临这个错误。
要修复,要么:
apt remove awscli && pip install awscli
. pip uninstall requests && pip install requests==2.12
与旧版本的 AWS CLI 兼容或 pip3 uninstall requests && pip3 install requests==2.12
. 关于aws-cli - “AWSHTTPSConnection”对象没有属性 'ssl_context',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45821085/
Not working root@49161b16e779:/# aws --version aws-cli/1.11.121 Python/3.5.2 Linux/4.10.0-32
我在运行 awscli 时遇到此错误(例如,我尝试运行 aws s3 sync --delete $BUCKET_URI $PUB_KEYS_DIR 我明白了)。 我已尝试重新安装(apt-get r
我是一名优秀的程序员,十分优秀!