2015-09-19 51 views
-1

當我安裝pyfuzzy Windows下7 64位的,我有這樣的問題:Python的pyfuzzy問題

C:\Python27>pip install pyfuzzy 
Collecting pyfuzzy 
Could not find a version that satisfies the requirement pyfuzzy (from versions:) 

Some externally hosted files were ignored as access to them may be unreliable (use --allow-external pyfuzzy to allow). 
No matching distribution found for pyfuzzy 

有人告訴我,改變命令,但我仍然滿足同樣的問題。

+0

您是否嘗試過使用錯誤信息提示標誌? – jonrsharpe

+0

是的,但它不工作 – Jennifier

回答

0

下載pyfuzzy包從https://github.com/arruda/pyfuzzy 提取出來,並python setup.py install

+0

我已經下載並使用PIP安裝它,但是當我導入模塊蟒蛇說,回溯(最近通話最後一個): 文件「」,1號線,在 進口pyfuzzy ImportError:沒有名爲pyfuzzy的模塊 – Jennifier

+0

不使用pip安裝,下載它,解壓縮,然後python setup.py安裝 –

+0

非常感謝。但是,雖然它已成功安裝,但仍有問題,代碼:導入模糊它沒有問題...但是當:soundex = fuzzy.Soundex(4)它顯示Traceback(最近調用最後一個): 文件「 「,第1行,在 soundex = fuzzy.Soundex(4) AttributeError:'模塊'對象沒有屬性'Soundex'我真的不知道爲什麼... – Jennifier