8

Google Translate API を使用する小さな Python スクリプトをノーズテストしようとしています。
APIをどこにインストールする必要がありますか、または何をしなければならないので、nosetestは私に教えてくれません

ImportError: No module named apiclient.discovery

スクリプトは正常に実行されます。私はそれをインポートしてpipでインストールしましたが、これをnosetestで機能させる方法に関する情報が見つかりません。

どんな助けでも大歓迎です!:)

4

2 に答える 2

1

The script runs fine, I import it as you would and installed it with pip, but I can't find any info on how to make this work with nosetest.

GAE does not work with pip very well unfortunately. I've encountered a similar problem like this.

What you need to do is copy the modules from your Python's libraries or you can just download them again from their websites, and then paste them directly inside your GAE code. Often, developers create a folder called lib, and add it PYTHONPATH.

Then your nosetests should run.

于 2013-10-21T12:26:40.170 に答える
1

ここで、 https://pypi.python.org/pypi/apiclient/1.0.2で tar.gz ファイルをダウンロードできると思います。解凍し、PC にインストールします。

于 2014-02-28T13:48:41.680 に答える