uwsgi installation error in windows 7

后端 未结 3 1843
栀梦
栀梦 2021-02-04 04:41

Trying to install uwsgi according to documentation. I\'m getting the below error on Windows 7.

What should I do?

(uwsgi-tutorial) C:\\Users\\Home\\Vide         


        
相关标签:
3条回答
  • 2021-02-04 05:34

    uWSGI can be compiled on Windows only using cygwin. There is no such thing as uname in normal Windows console, but it exists inside cygwin. If you're already in cygwin console, try to run uname command, if that exists, check if os.uname() in python inside cygwin is also working.

    0 讨论(0)
  • 2021-02-04 05:36

    uWSGI can be compiled on Windows using Cygwin. But unfortunately, I was getting the same message with the Cygwin.

    Here I am sharing the other way to install uWSGI on windows.

    Step 1: Download the stable release and extract the tar file

    Step 2: Open uwsgiconfig.py and import platform then replace os.uname()[index] with platform.uname()[index]

    Change

    uwsgi_os = os.uname()[0]
    uwsgi_os_k = re.split('[-+_]', os.uname()[2])[0]
    uwsgi_os_v = os.uname()[3]
    uwsgi_cpu = os.uname()[4]
    

    To

    import platform
    uwsgi_os =  platform.uname()[0]
    uwsgi_os_k = re.split('[-+_]',  platform.uname()[2])[0]
    uwsgi_os_v =  platform.uname()[3]
    uwsgi_cpu =  platform.uname()[4]
    

    Step 3: Run python setup.py install

    Note: You may need to install GCC and configure it.

    0 讨论(0)
  • 2021-02-04 05:46

    Latest news from the front, uWSGI perfectly works on Windows 10 in bash on Ubuntu on Windows

    As Linux subsystem still in beta, i'd not recommend for production usage, however this will cover all dev needs.

    P.S. i know that op ask about Windows 7, however as Windows 10 and Linux subsystem come to Windows world later, i think i can leave this here.

    0 讨论(0)
提交回复
热议问题