2011-12-07 24 views
2

Windowsにssdeepのpythonバインディングをインストールしようとしましたが、build_extを実行するとクラッシュします。私が逃しているものは何ですか?Windowsにssdeepをインストールする際のエラー

>c:\Python26\python.exe setup.py install 
    running install 
    running bdist_egg 
    running egg_info 
    writing ssdeep.egg-info\PKG-INFO 
    writing top-level names to ssdeep.egg-info\top_level.txt 
    writing dependency_links to ssdeep.egg-info\dependency_links.txt 
    reading manifest file 'ssdeep.egg-info\SOURCES.txt' 
    reading manifest template 'MANIFEST.in' 
    writing manifest file 'ssdeep.egg-info\SOURCES.txt' 
    installing library code to build\bdist.win32\egg 
    running install_lib 
    running build_ext 
    '.' is not recognized as an internal or external command, 
    operable program or batch file. 

答えて

2

.は、POSIX互換シェルでファイルをソースするコマンドです。 cygwinをインストールしてbashやその他のPOSIX互換シェルを入手するか、またはdepcomp(潜在的にはconfigure)をシェルで使用するよう手動で書き換えてください。

関連する問題