We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The AWS hosted Getting Started with the AWS SDK for Python (Boto) page instructs the user to run pip install boto, which installs boto-2.43.0-py2.py3-none-any.whl under OSX 10.11.6:
pip install boto
Next, when the user runs the sample code, the following error is returned:
$ python s3_sample.py Traceback (most recent call last): File "s3_sample.py", line 16, in <module> import boto3 ImportError: No module named boto3
The README file in this project correctly instructs the user to run pip install boto3.
pip install boto3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The AWS hosted Getting Started with the AWS SDK for Python (Boto) page instructs the user to run
pip install boto
, which installs boto-2.43.0-py2.py3-none-any.whl under OSX 10.11.6:Next, when the user runs the sample code, the following error is returned:
The README file in this project correctly instructs the user to run
pip install boto3
.The text was updated successfully, but these errors were encountered: