我试图在Windows 10上的python 3.6下安装pyfasttext,如here所述。
我有来自mingw的g ++,clang LLVM 7.0.1,并将它们都放在环境变量上。
我设置USE_CYSIGNALS=0
是因为我在Windows上。
但是当我运行命令时:
python setup.py install
我遇到以下错误:
File "setup.py", line 66, in build_extensions
if 'clang' in self.compiler.compiler[0]:
AttributeError: 'MSVCCompiler' object has no attribute 'compiler'
有人可以帮我吗,我希望能够在Windows上使用pyfasttext。
答案 0 :(得分:1)
抱歉,我没有从github上很好地阅读过文档:
Warning! pyfasttext is no longer maintained:
use the official Python binding from the fastText repository:
https://github.com/facebookresearch/fastText/tree/master/python
所以我只需要安装fastText。
pip install fastText
答案 1 :(得分:0)
pyfasttext在Windows上不受支持,因为未为Windows编译CYSIGNALS。