在cygwin上安装uwsgi

问题描述 投票:4回答:2

有没有人设法在cygwin上安装uwsgi(python 2.7)?

{ uwsgi-2.0.11.2 }  » python setup.py install
running install
using profile: buildconf/default.ini
detected include path: ['/usr/lib/gcc/i686-pc-cygwin/4.9.2/include', '/usr/lib/gcc/i686-pc-cygwin/4.9.2/include-fixed', '/usr/include', '/usr/lib/gcc/i686-pc-cygwin/4.9.2/../../../../include/w32api']
Patching "bin_name" to properly install_scripts dir
detected CPU cores: 1
configured CFLAGS: -O2 -I. -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fno-strict-aliasing -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_WINDOWS_MUTEX -DUWSGI_EVENT_USE_POLL -DUWSGI_EVENT_TIMER_USE_NONE -DUWSGI_EVENT_FILEMONITOR_USE_NONE -DUWSGI_UUID -DUWSGI_VERSION="\"2.0.11.2\"" -DUWSGI_VERSION_BASE="2" -DUWSGI_VERSION_MAJOR="0" -DUWSGI_VERSION_MINOR="11" -DUWSGI_VERSION_REVISION="2" -DUWSGI_VERSION_CUSTOM="\"\"" -DUWSGI_YAML -DUWSGI_SSL -DUWSGI_PLUGIN_DIR="\".\"" -DUWSGI_DECLARE_EMBEDDED_PLUGINS="UDEP(python);UDEP(gevent);UDEP(ping);UDEP(cache);UDEP(nagios);UDEP(rrdtool);UDEP(carbon);UDEP(rpc);UDEP(corerouter);UDEP(fastrouter);UDEP(http);UDEP(signal);UDEP(syslog);UDEP(rsyslog);UDEP(logsocket);UDEP(router_uwsgi);UDEP(router_redirect);UDEP(router_basicauth);UDEP(zergpool);UDEP(redislog);UDEP(mongodblog);UDEP(router_rewrite);UDEP(router_http);UDEP(logfile);UDEP(router_cache);UDEP(rawrouter);UDEP(router_static);UDEP(sslrouter);UDEP(spooler);UDEP(cheaper_busyness);UDEP(symcall);UDEP(transformation_tofile);UDEP(transformation_gzip);UDEP(transformation_chunked);UDEP(transformation_offload);UDEP(router_memcached);UDEP(router_redis);UDEP(router_hash);UDEP(router_expires);UDEP(router_metrics);UDEP(transformation_template);UDEP(stats_pusher_socket);" -DUWSGI_LOAD_EMBEDDED_PLUGINS="ULEP(python);ULEP(gevent);ULEP(ping);ULEP(cache);ULEP(nagios);ULEP(rrdtool);ULEP(carbon);ULEP(rpc);ULEP(corerouter);ULEP(fastrouter);ULEP(http);ULEP(signal);ULEP(syslog);ULEP(rsyslog);ULEP(logsocket);ULEP(router_uwsgi);ULEP(router_redirect);ULEP(router_basicauth);ULEP(zergpool);ULEP(redislog);ULEP(mongodblog);ULEP(router_rewrite);ULEP(router_http);ULEP(logfile);ULEP(router_cache);ULEP(rawrouter);ULEP(router_static);ULEP(sslrouter);ULEP(spooler);ULEP(cheaper_busyness);ULEP(symcall);ULEP(transformation_tofile);ULEP(transformation_gzip);ULEP(transformation_chunked);ULEP(transformation_offload);ULEP(router_memcached);ULEP(router_redis);ULEP(router_hash);ULEP(router_expires);ULEP(router_metrics);ULEP(transformation_template);ULEP(stats_pusher_socket);"
*** uWSGI compiling server core ***
[gcc] core/utils.o
core/utils.c: In function ‘uwsgi_as_root’:
core/utils.c:848:4: error: implicit declaration of function ‘initgroups’ [-Werror=implicit-function-declaration]
    if (initgroups(uidname, uwsgi.gid)) {
    ^
cc1: all warnings being treated as errors

我有make,automake,gcc(4.9.2)。我需要什么吗?

cygwin uwsgi
2个回答
0
投票

我在Windows 7,gcc (GCC) 4.9.3GNU Make 4.1下遇到了完全相同的问题。实际上有3个问题需要解决。第一个是通过删除-Wall标志来禁用GCC警告。第二种是在使用Cygwin时删除GCC -rdynamic链接器选项。最后一个问题是您需要使用Cygwin的安装程序安装程序安装libcrypt-devel

这是我的git diff uwsgiconfig.py的样子。请注意,我从master克隆了GitHub分支。

diff --git a/uwsgiconfig.py b/uwsgiconfig.py
index 3279777..cca00cf 100644
--- a/uwsgiconfig.py
+++ b/uwsgiconfig.py
@@ -1,5 +1,6 @@
 # uWSGI build system

+
 uwsgi_version = '2.1-dev'

 import os
@@ -621,7 +622,7 @@ class uConf(object):
         self.cflags = [
             '-O2',
             '-I.',
-            '-Wall',
+            # '-Wall',
             '-Werror',
             '-D_LARGEFILE_SOURCE',
             '-D_FILE_OFFSET_BITS=64'
@@ -842,6 +843,9 @@ class uConf(object):
             if GCC in ('clang',):
                 self.libs.remove('-rdynamic')

+        if uwsgi_os.startswith('CYGWIN'):
+            self.libs.remove('-rdynamic')
+
         # compile extras
         extras = self.get('extras', None)
         if extras:

然后克隆的uwsgi目录中的一个简单的make应该构建一切。

我通过创建一个名为app.py的文件来测试它,其中包括:

def application(env, start_response):
    start_response('200 OK', [('content-type', 'text/html')])

    return [b'asdasdasd']

然后运行服务器 -

./uwsgi --http :9090 --wsgi-file app.py

当我访问http://localhost:9090/时,一切正常。


0
投票

我成功只使用latest uwsgilatest Cygwin。核心是第2步

步:

  1. 下载qazxsw poi
  2. 安装:安装时,必须选择安装pip和python(我的是python2.7.16)==>这是Cygwin的python,而不是安装在Windows上的python并在Cygwin shell中使用(Cygwin
  3. 下载qazxsw poi
  4. 安装REF TOuwsgi是由python为你在步骤2中选择的Cygwin创建的,你可能会在cd {YOUR uwsgi}; python2.7.exe setup install找到它,将其添加到python2.7.exe就像在linux中一样(/bin/pythonX.x.exePATH))
  5. 如果步骤4中发生错误,如'xxx / ld not found -lintl`,请转到步骤2找到它(通常为xxx-devel)并安装
  6. 使用/etc/profile~/.bash_profile只能在Cygwin控制台上运行(否则访问拒绝),但你可以使用uwsgi,将它添加到你的uwsig,并在Cygwin控制台上安装像django这样的软件包。
© www.soinside.com 2019 - 2024. All rights reserved.