我通過下面走:Python:如何正確設置boto3並連接到AWS S3?
http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html https://boto3.readthedocs.io/en/latest/guide/quickstart.html#installation
,並使用IDE與文件(pract.py)想出了:
import boto3
# Let's use Amazon S3
s3 = boto3.resource('s3')
for bucket in s3.buckets.all():
print(bucket.name)
並運行它,但遇到下列錯誤來了即使我安裝了boto3:
ImportError: No module named boto3
我該如何c確認一切已經正確安裝和配置?可能是什麼問題?
謝謝你提前一定會接受/給予好評回答
當我做點子安裝boto3
您可以在運行'pip install boto3'時發佈STDOUT嗎? – Jared
@Jared請看看截圖 –
的原始文章您是否正在IDE內運行腳本?或者在命令行? – garnaat