win10 64bit下python NLTK安装教程
由于最近需要做项目,需要进行分词等,查了资料之后,发现python nltk很强大,于是就想试试看。在网上找了很多安装资料,都不太完整,下载的时候也总是会出现一点小意外,最后终于也安装成功了,所以分享下经验。
初学者,请高手指出不合理的地方。
我的工作站环境是win10 64 + python 2.7.12 64 bit。
按照nltk上安装主页上的指引如下:
source installation (for 32-bit or 64-bit windows) 1.install python: http://www.python.org/download/releases/2.7.3/ 2.install numpy (optional): http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy 3.install setuptools: http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11.win32-py2.7.exe 4.install pip: start>run... c:\python27\scripts\easy_install pip 5.install pyyaml and nltk: start>run... c:\python27\scripts\pip install pyyaml nltk 6.test installation: start>all programs>python27>idle, then type import nltk
前3步的安装都比较简单,如果为了更好的编辑,也可以安装一下编辑软件,如pycharm,sublime text2/3等等。在安装的时候要注意安装路径,最好不要出现中文。
我在安装第4步的时候出现了一点小问题,执行命令后报错:python version 2.7 required, which was not found in the registry,于是我又到网上查了资料,解决方法是:
1)自己新建一个register.py文件,在文件中复制黏贴以下内容,然后保存到自己的路径,我是直接放到pyhon的安装文件夹中;
# # script to register python 2.0 or later for use with win32all # and other extensions that require python registry settings # # written by joakim loew for secret labs ab / pythonware # # source: # http://www.pythonware.com/products/works/articles/regpy20.htm # # modified by valentine gogichashvili as described in http://www.mail-archive.com/distutils-sig@python.org/msg10512.html 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!" if __name__ == "__main__": registerpy()
2)ctrl+r打开cmd,然后进入python的安装目录(如果有配置环境变量的话,就不用这么麻烦了,可以直接命令操作),输入:python register.py(这个是刚才存错register.py的路径,如d:\register.py)。出现python 2.7 is already registered!则表示配置成功。
3)接着,进入scripts目录,输入:easy_install pip,提示安装成功。
第5步是安装pyyaml和nltk。直接在刚才的目录中输入:pip install pyyaml nltk,这时会提示安装是否成功,若安装成功可以接着下一步。
此时,就可以到idle中进行下载nltk的数据包:
稍等一会,就出现了如下的页面,弹出如下窗口,即完成了。我是选择下载了所有的data,你可以根据自己的需要进行下载。要等很久才会完成这个过程,慢慢来,最后就可以测试啦。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: CSS的再深入3(更新中···)
推荐阅读
-
Mysql 5.7.17 winx64免安装版,win10环境下安装配置图文教程
-
win10下mysql 8.0.11 压缩版安装教程
-
win10 下安装mysql服务器社区版本mysql 5.7.22 winx64的图文教程
-
win10下mysql 8.0.16 winx64安装图文最新教程
-
win10下mysql 8.0.16 winx64安装配置方法图文教程
-
win10下mysql 5.7.23 winx64安装配置方法图文教程
-
Windows下python2.7.8安装图文教程
-
Win10下免安装版MySQL8.0.16的安装和配置教程图解
-
Windows系统下安装Python的SSH模块教程
-
Linux下编译安装MySQL-Python教程