繁体   English   中英

/usr/lib/python2.7/subprocess.py OSError:[Errno 2]没有这样的文件或目录

[英]/usr/lib/python2.7/subprocess.py OSError: [Errno 2] No such file or directory

我正在尝试将MEGAM与NLTK一起使用。

这是我的代码:

import nltk
import os
megam_path = os.path.expanduser("~/nltk_data/megam_i686.opt")
nltk.config_megam(megam_path)
me_classifier = MaxentClassifier.train(train_feats,     algorithm='megam')
print me_classifier.show_most_informative_features(n=4)
print("accuracy of Maxent Classifier :  ",   accuracy(me_classifier, test_feats))

运行文件时,输出为:

    [Found /home/ubuntu/nltk_data/megam_i686.opt:     /home/ubuntu/nltk_data/megam_i686.                       opt]
    Traceback (most recent call last):
      File "./classifying.py", line 494, in <module>
        me_classifier = MaxentClassifier.train(train_feats,   algorithm='megam')
      File "/usr/local/lib/python2.7/dist-    packages/nltk/classify/maxent.py", line 31                       9,     in train
        gaussian_prior_sigma, **cutoffs)
      File "/usr/local/lib/python2.7/dist-
packages/nltk/classify/maxent.py", line 15                          22, in train_maxent_classifier_with_megam
        stdout = call_megam(options)
      File "/usr/local/lib/python2.7/dist- packages/nltk/classify/megam.py", line 167                       ,     in call_megam
        p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
      File "/usr/lib/python2.7/subprocess.py", line 679, in    __init__
        errread, errwrite)
      File "/usr/lib/python2.7/subprocess.py", line 1249, in     _execute_child
        raise child_exception
    OSError: [Errno 2] No such file or directory

但是文件subprocess.py存在。

有任何提示或建议吗?

它与subprocess.py文件无关。 subprocess.Popen()启动一个子进程。 检查cmd是否在$PATH 您可能需要安装一些命令行实用程序才能使用MaxentClassifier

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM