我試過在python3中導入boto3它正在工作,但我在python2.7中嘗試過boto3,它拋出以下錯誤。無法在Python 2.7中導入boto3
python3
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25)
>>> import boto3
>>> exit()
$ python
Python 2.7.10 (default, Oct 23 2015, 19:19:21)
>>> import boto3
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named boto3
我們如何才能讓boto3使用python2.7?