由于某些原因,这些模块在我的Pycharm交错器中不存在,而我确实要点点安装它们 所以我不能在pycharm中使用my script(as in the picture u can see the interpeter他们
import spacy
from spacy_langdetect import LanguageDetector
nlp = spacy.load('he')
#language_detector = language_detector()
nlp.add_pipe(language_detector)
doc = nlp('This is some English text.')
doc._.languages # ['he']
答案 0 :(得分:0)
这不是与安装有关的问题,您已正确安装了spacy_langdetect。它不会显示在您的PyCharm解释器下,因为Pycharm将其视为spacy软件包下的模块,而不是完全视为单独的软件包。如果打开命令提示符,请导航到您正在使用的环境,然后键入pip list
,将显示spacy-langdetect软件包。