-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors in sent2vec make and pip install #60
Comments
I am getting below error after installing microsoft visual c++ 14.16. And i am using windows 10 (Don't sent2Vec is supported or not) `C:\Sent2Vec_POC\sent2vec>pip install . Failed building wheel for sent2vec
Command "c:\users\vshanmugam\appdata\local\programs\python\python36\python.exe - |
Sadly, Sent2vec offers no guarantee on Mac or Windows. Especially with the latest addition of an inference mode using shared memory. No tests were done on Mac or Windows. Should be possible to make it work on Mac, but Windows is a long shot. |
This is resolved by copying the code from However, I still get the |
Any updates on this? |
+1 for Windows support |
Maybe the best way to use it on Windows would be to write a small API running in a docker container. If anyone wants to contribute, I'd be happy to merge. |
@guptaprkhr Did you close this because Windows is now fully supported? |
No, I closed it because of lack of activity. I'll open it again and as @mpagli said, if somebody wants to contribute by writing a small API running in a docker container to use it on Windows, we'll happily merge it. |
there is a separate issue for a docker container |
When running the make in the sent2vec folder gives me an error from
ld
where it takes issue with the-lrt
flags when building fastText.This error was fixed when I removed the
-lrt
flags, but even then when runningpip install .
command gcc fails to find<atomic>
library every time. I have tried explicitly finding and including them in theCXXFLAGS
andCCFLAGS
but it did not remedy the situation.running
gcc -v
yields the following output:Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 Apple LLVM version 10.0.0 (clang-1000.10.44.4) Target: x86_64-apple-darwin17.7.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin
any insight into solving this issue would be highly appreciated.
-Victor
The text was updated successfully, but these errors were encountered: