您好,登錄后才能下訂單哦!
本文記錄了NLTK 3.2.4 環(huán)境搭建的方法,供大家參考,具體內(nèi)容如下
系統(tǒng)環(huán)境:win7 32位
python:2.7.13,后改為3.6.1
安裝NLTK
從網(wǎng)站下載,完成后雙擊安裝,但提示Python version -32 required, which was not found in the registry.
從網(wǎng)上搜索到以下解決方案:
新建文件D:\register.py,通過(guò)腳本建立注冊(cè)信息
#===============register.py====================## #!/usr/bin/env python # -*- coding:utf-8 -*- import sys from _winreg import * # tweak as necessary version = sys.version[:3] installpath = sys.prefix regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\" % (version) installkey = "InstallPath" pythonkey = "PythonPath" pythonpath = "%s;%s\\Lib\\;%s\\DLLs\\" % ( installpath, installpath, installpath ) def RegisterPy(): try: reg = OpenKey(HKEY_CURRENT_USER, regpath) except EnvironmentError as e: try: reg = CreateKey(HKEY_CURRENT_USER, regpath) SetValue(reg, installkey, REG_SZ, installpath) SetValue(reg, pythonkey, REG_SZ, pythonpath) CloseKey(reg) except: print ("*** Unable to register!") return print ("--- Python", version, "is now registered!") return if (QueryValue(reg, installkey) == installpath and QueryValue(reg, pythonkey) == pythonpath): CloseKey(reg) print ("=== Python", version, "is already registered!") return CloseKey(reg) print ("*** Unable to register!") print ("*** You probably have another Python installation!") RegisterPy()
打開(kāi)cmd,執(zhí)行
運(yùn)行安裝文件,仍然失敗= =(有大神能解決的請(qǐng)私信或留言 謝謝?。?/p>
于是放棄了中文版的NLP with Python,重投http://www.nltk.org/book/。
安裝最新版python3.6.1,cmd中直接執(zhí)行
py –m pip install nltk
安裝成功。
在IDLE中輸入命令
>>>import nltk >>>nltk.download()
終于出現(xiàn)如下NLTK Downloader界面
下載完畢后,就可以在IDLE中加載NLTK并使用了。
>>>from nltk.book import *
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。