Error installing Fasttext on Windows 10 Python 3

I am trying to install fastText using pip install fastText on Windows 10. I have Python 3 installed in Anaconda. I've tried reading a few posts, but they don't give a clear idea of ​​exactly what changes I have to make to install. I am getting the following error: enter image description here

Below is the error:

raise ValueError("Unknown MS Compiler version %s " % msc_ver)
ValueError: Unknown MS Compiler version 1900

      

Can anyone help with this?

+3


source to share


2 answers


It looks like this is a bug currently open according to Python Bug Tracker



0


source


I just successfully install fasttext on Windows 10 using pip with Visual Studio Build Tools (MS Compiler) for Visual Studio 2017.



You can download MS Build Tools for Visual Studio 2017 here: http://landinghub.visualstudio.com/visual-cpp-build-tools

-1


source







All Articles