私はWindows 7、Python 2.6を使用しています。http://code.google.com/p/pylevenshtein/downloads/detail?name=python-Levenshtein-0.10.1.tar.bz2&can=2&q=からレーベンシュタイン拡張機能をダウンロードしました
環境変数を C:\PYTHON26;C:\PYTHON26\DLLs;C:\PYTHON26\LIB;C:\PYTHON26\LIB\LIB-TK に設定しました
python install setup.py を実行して実際にインストールすると、次のようになります。
running install
running build
running build_ext
building 'Levenshtein' extension
error: None
それから私はしようとするimport Levenshtein
と、私はImportError: No module named Levenshtein
import StringMatcher の結果:
Traceback (most recent call last):
File "(stdin)", line 1, in (module)
File "stringMatcher.py", line 1, in (module)
from Levenshtein imoprt *
ImportError: No module name Levenshtein
私は愚かな何かを逃していますか?これは、インストールしようとするすべての追加モジュールで発生するようです。