-
Notifications
You must be signed in to change notification settings - Fork 693
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
pip install uwsgi fails on windows #1930
Comments
Hi, there is no support for windows, but you can use uWSGI in the linux subsystem in windows 10. |
why is that? what if i want to burn my app inside uwsgi and create a binary for win ? otherwise what should be the solution for multi-platform binaries for Flask? (pyinstaller?) |
Try this to skip errored package this command will install pip requirements line by line and if there is an error on some of packages it will not freeze the rest of installations. I have the same issue and several OS issues in many cases |
@antlancer-solutions 's solution worked for me, but I had to put it into powershell:
|
If I try to install uwsgi on windows, I get an error:
I found out, that the following code does not work under windows python:
os.uname()
But the following code is supposed to work cross-platform:
platform.uname()
I hope you can fix this issue for windows users. Thank you!
The text was updated successfully, but these errors were encountered: