我搜寻了网络(包括显示与Heroku,Anaconda等类似的问题但常见的根本原因-未找到资源语料库/wordnet的6个链接),并尽我所能,包括但不限于-
即使经过3个小时的尝试,我仍然无处可寻。如果有人能指出我如何在以下位置成功运行Quepy示例(python main.py“谁是汤姆·克鲁斯?”),我将不胜感激。 Quepy并不是问题,但是为什么在地球上找不到资源。
这是确切的错误-
Resource u'corpora/wordnet' not found. Please use the NLTK
Downloader to obtain the resource: >>> nltk.download()
Searched in:
- 'home/ubuntu/nltk_data'
笔记 -
最佳答案
您的路径似乎不完整。在Unix文件系统中,完整路径始终以斜杠开头:/path/to/file/is/well-formed/example.txt
。在学习过程中,使用ls
在shell(即命令行)中检查完整路径始终是一个好习惯。
$ ls /path/to/example/file.txt
/path/to/example/file.txt
$ ls /this/one/is/not/there.txt
ls: /this/one/is/not/there.txt: No such file or directory
如果得到
No such file or directory
,那么您的路径是错误的。关于python - 找不到资源语料库/wordnet(正在运行quepy dbpedia示例应用程序),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30675234/