1

再インストールを試みましたが、次のメッセージが表示されました。

Requirement already satisfied: troposphere==1.8.2 in /usr/local/lib/python2.7/site-packages (from -r requirements.txt (line 13)

Pythonのバージョンを確認したところ、これは同じであることがわかりました:

animjain$ python -V
Python 2.7.10

モジュールをインポートしようとすると、次のエラーが発生します。

animjain$ python
Python 2.7.10 (default, Oct 23 2015, 19:19:21) 
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from troposphere import Join, Ref, FindInMap
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named troposphere
4

2 に答える 2

1

マシンに複数の Python バージョンがある場合は、同じ Python コマンドを使用してインストールします。

animjain$ pip install troposphere==1.8.2

走る:

animjain$ python -mpip install troposphere==1.8.2
于 2017-02-27T13:45:50.460 に答える