2016-09-07 14 views
1

pypiモジュール(thinkx 1.1.2)をスパイダーにインポートしようとしています。それはアナコンダにインストールされ、condaリストに表示されます。私のpythonパスフォルダは私のanacondaフォルダです。私はスパイダーにthinkxをインポートしようとすると私が取得: インポートは、(最後の最新の呼び出し) トレースバックをthinkx:いいえモジュールは名前のない 'thinkx':Pypiモジュールのモジュールインポートエラー

ファイル ""、1行目は、 輸入に

はImportErrorをthinkx

答えて

1

module READMEによると、thinkxthinkxという名前のパッケージを公開していません。

It provides the following modules:

  • thinkbayes : Code for Think Bayes.
  • thinkstats2 : Code for Think Stats, 2nd edition
  • thinkbayes2 : Code for Think Bayes, 2nd edition, not yet published.
  • thinkdsp : Code for Think DSP
  • thinkplot : Plotting code used in all of the books, mostly wrapper functions for matplotlib.pyplot

試してみてください。

import thinkbayes 
関連する問題