0

相互依存を避けるために、多くのパッケージに付属する canopy Express をインストールしました。python はプロンプトで正常に動作します。コードを実行でき、すべて問題ありません。しかし、リンクは、pytest などの canopy Express に含まれる多くのパッケージを引用しています。しかし、pytestをインポートしようとすると、importError. すべてのモジュールを一覧表示してもhelp("modules")機能しません。これらのパッケージ (pytest、curl、distribute など) が存在するかどうかについて、Canopy Express を使用しているすべての人がコメントできます。

Enthought Canopy Python 2.7.3 | 64-bit | (default, Aug  8 2013, 05:37:06) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> help("modules")
no Python documentation found for 'modules'

>>> import pytest
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named pytest
>>> import distribute
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named distribute
>>> import curl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named curl
>>> import pandas
>>>
4

1 に答える 1