Can't add uwsgi to project
Using Pycharm Community 2019.2 on Windows 10
Using Pipenv virtual environment.
I need to add uwsgi package to my project. Specifically I need it in Pipfile so that when I deploy on web server uwsgi will be built.
However, installing package uWSGI always fails with error message:
pipenv.patched.notpip._internal.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in C:\...\AppData\Local\Temp\tmplirtot_1build\uwsgi\
What do I need in order to install the uWSGI package?
Please sign in to leave a comment.
Please try installing it from the terminal outside of IDE to check if the issue is IDE related. After you added the package to Pipfile, you can just do `pipenv install`