Pip install uwsgi error

My notes on several issues when installing and running uWSGI.

Contents

My notes on several issues when installing and running uWSGI.

pip install uwsgi error

When I try to install uwsgi using pip, there are compilation errors.
After some search, based on discussions here, I find the cause of this issue is that the version of gcc is too high.
I am using Ubuntu 18.04, and the default gcc version is 7.4.0.

Based on this post, the minimum gcc we can install from the default Ubuntu 18.04 remote repo is gcc-4.8.
There is no gcc-4.7 available for install. It turns out that gcc-4.8 works fine:

apt-get update && apt-get install gcc-4.8 g++-4.8

Then we need to change the gcc command to point to gcc-4.8:

rm /usr/bin/gcc && ln -s /usr/bin/gcc-4.8 /usr/bin/gcc

After that, I can install uwsgi successfully using pip.
Finally, let’s revert the gcc version to its old state:

rm /usr/bin/gcc && ln -s /usr/bin/gcc-7 /usr/bin/gcc

I use the following command to install uwsgi with conda:

conda create -n py36 -c conda-forge python==3.6.5 uwsgi

When I run uwsgi --version, I see the following error message:

error while loading shared libraries: libicui18n.so.58: cannot open shared
object file: No such file or directory

The solution is to run conda install icu=58, ref here.

uwsgi segmentation fault

I am using uwsgi 2.0.18 (installed via conda install -c conda-forge uwsgi) with python 3.7.7 from Miniconda.
When I use uwsgi to server a simple Flask application, I see segmentation errors below:

uwsgi(uwsgi_backtrace+0x2c) [0x5638f8685bbc]
uwsgi(uwsgi_segfault+0x32) [0x5638f8685ff2]
/lib/x86_64-linux-gnu/libc.so.6(+0x3ef20) [0x7f8c09c22f20]
/opt/miniconda/lib/python3.7/lib-dynload/_queue.cpython-37m-x86_64-linux-gnu.so(+0x2932) [0x7f8c07fe9932]
uwsgi(_PyDict_DelItem_KnownHash+0x36b) [0x5638f860ec1b]
uwsgi(_PyEval_EvalFrameDefault+0x2510) [0x5638f85a1680]
uwsgi(_PyEval_EvalCodeWithName+0x2f9) [0x5638f862abc9]
uwsgi(_PyFunction_FastCallDict+0x1d7) [0x5638f86045a7]
uwsgi(+0x1ed7a3) [0x5638f86057a3]
uwsgi(PyObject_CallFunctionObjArgs+0x99) [0x5638f8605a09]
uwsgi(PyObject_ClearWeakRefs+0x33c) [0x5638f86010fc]
uwsgi(+0x1a638c) [0x5638f85be38c]
uwsgi(+0x1b9a27) [0x5638f85d1a27]
uwsgi(+0x1f70b8) [0x5638f860f0b8]
uwsgi(+0x1a6435) [0x5638f85be435]
uwsgi(_PyFunction_FastCallKeywords+0x290) [0x5638f8604020]
uwsgi(_PyEval_EvalFrameDefault+0x40a) [0x5638f859f57a]
uwsgi(_PyFunction_FastCallDict+0x10b) [0x5638f86044db]
uwsgi(_PyEval_EvalFrameDefault+0x1e1d) [0x5638f85a0f8d]
uwsgi(_PyFunction_FastCallKeywords+0xfb) [0x5638f8603e8b]
uwsgi(_PyEval_EvalFrameDefault+0x6d4) [0x5638f859f844]
uwsgi(_PyFunction_FastCallKeywords+0xfb) [0x5638f8603e8b]
uwsgi(_PyEval_EvalFrameDefault+0x6d4) [0x5638f859f844]
uwsgi(_PyFunction_FastCallKeywords+0xfb) [0x5638f8603e8b]
uwsgi(_PyEval_EvalFrameDefault+0x6d4) [0x5638f859f844]
uwsgi(_PyFunction_FastCallDict+0x10b) [0x5638f86044db]
uwsgi(_PyObject_Call_Prepend+0x63) [0x5638f86054b3]
uwsgi(+0x1b56fa) [0x5638f85cd6fa]
uwsgi(PyObject_Call+0x6b) [0x5638f8604bdb]
uwsgi(python_call+0x12) [0x5638f869ffa2]
uwsgi(uwsgi_request_wsgi+0x266) [0x5638f86a2556]
uwsgi(wsgi_req_recv+0xa7) [0x5638f8633557]
uwsgi(simple_loop_run+0xd1) [0x5638f8681521]
uwsgi(simple_loop+0x11) [0x5638f8681301]
uwsgi(uwsgi_ignition+0x315) [0x5638f8686395]
uwsgi(uwsgi_worker_run+0x2b4) [0x5638f868aef4]
uwsgi(uwsgi_run+0x525) [0x5638f868b575]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xe7) [0x7f8c09c05b97]
uwsgi(+0x21abed) [0x5638f8632bed]
*** end of backtrace ***

My MWE flask application:

import concurrent.futures

from flask import Flask

app = Flask(__name__)

@app.route("/toy", methods=["GET"])
def process_request():
    results = do_concurrent()

    if not results:
        return "Fail."

    return "Success"


def simple_task(num):
    return 1


def do_concurrent():
    dummy_list = list(range(100))
    with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor:
        results = list(executor.map(simple_task, dummy_list))

    return results

The uwsgi command to run flask application:

uwsgi --http 0.0.0.0:6012 --wsgi-file flask_demo.py --callable app --processes 1 --threads 1

The scrip to test this service:

import requests


url = "http://0.0.0.0:6012/toy"

r = requests.get(url, timeout=5)
print(r)

When I request the service, I see the above segmentation errors.

If I create a conda virtual env with python version 3.6:

conda create -n py36 -c conda-forge python==3.6.5 uwsgi icu=58 flask

run the service using uwsgi and request again, the error disappears.

If I do not use concurrent.futures, I see no errors both for python 3.7 and python 3.6.
I am not knowledgeable enough to know the exact cause of this issue.
It seems there is some compatibility issue with uwsgi, python version and concurrent package.

symbol not found on macOS

I am using Python 3.7 installed via Anaconda, and uWSGI is installed via pip.
When I run my simple Flask application, I see the following error:

ImportError: dlopen(/Users/jdhao/anaconda3/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so, 2): Symbol not found: _PyExc_MemoryErrorImportError: dlopen(/Users/jdhao/anaconda3/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so, 2): Symbol not found: _PyExc_MemoryError
  Referenced from: /Users/jdhao/anaconda3/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so
  Expected in: flat namespace

This seems to be a compatibility issue between uWSGI and Anaconda python.
There are two solutions:

  1. Uninstall uWSGI installed via pip and install it using conda:

    # uWSGI is provided by the conda-forge channel
    conda install -c conda-forge uwsgi
    
  2. Using Python 3.6 with uWSGI. We can create a new virtual env with Python 3.6.5 and intall uWSGI inside.

    conda create -n py36 python==3.6.5 flask
    

    After that, activate the virtual env and install uWSGI inside:

    conda activate py36
    pip install uwsgi
    

Author
jdhao

LastMod
2022-08-01

License
CC BY-NC-ND 4.0

Halfway through the writing of the flask project, I was going to try to run it on the server. I thought that app.run() could not be used in the production environment, but Baidu wanted to use Ngix+uwsgi.

In line with the principle of pip all the way, first came a beautiful

  Unfortunately reported an error

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

[gcc -pthread] core/zlib.o

    [gcc -pthread] core/regexp.o

    [gcc -pthread] core/routing.o

    [gcc -pthread] core/yaml.o

    [gcc -pthread] core/ssl.o

    [gcc -pthread] core/legion.o

    [gcc -pthread] core/xmlconf.o

    [gcc -pthread] core/dot_h.o

    [gcc -pthread] core/config_py.o

    *** uWSGI compiling embedded plugins ***

    [gcc -pthread] plugins/python/python_plugin.o

    In file included from plugins/python/python_plugin.c:1:0:

    plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory

                        ^

    compilation terminated.

    ----------------------------------------

Command "/usr/bin/python3.4 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-dsr9i4nq/uwsgi/setup.py';f=getattr(tokenize, 'open'open)(__file__);code=f.read().replace('rn''n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-9835ofpr-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-dsr9i4nq/uwsgi/

I can’t find python.h. It must be a dependency problem. A search on the Internet shows that the basic answer is to install python-dev and build-essential. I tried yum and found that the package was not found.

1

2

3

4

5

6

7

8

9

Loaded plugins: fastestmirror, langpacks

Repository epel is listed more than once in the configuration

Loading mirror speeds from cached hostfile

 * base: mirrors.aliyun.com

 * extras: mirrors.aliyun.com

 * updates: mirrors.aliyun.com

No package python-dev available.

Error: Nothing to do

  Think about yourself as python3, change your posture

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

Loaded plugins: fastestmirror, langpacks

Repository epel is listed more than once in the configuration

Loading mirror speeds from cached hostfile

 * base: mirrors.aliyun.com

 * extras: mirrors.aliyun.com

 * updates: mirrors.aliyun.com

No package python3-dev available.

Error: Nothing to do

Loaded plugins: fastestmirror, langpacks

Repository epel is listed more than once in the configuration

Loading mirror speeds from cached hostfile

 * base: mirrors.aliyun.com

 * extras: mirrors.aliyun.com

 * updates: mirrors.aliyun.com

No package python34-dev available.

Error: Nothing to do

This is fascinating

Solution:

Although the error reports are not consistent, I can’t find <python.h> anyway.

1

yum install python34-devel

After the installation is complete, then pip install uwsgi, a smooth journey.

Read More:

I am trying to launch a Flask server w/ Nginx. But unable to install uwsgi on Python3.8.

Any solutions?

(uniERP_env) root@test:/var/uniERP# pip install uwsgi
Collecting uwsgi
Using cached uwsgi-2.0.18.tar.gz (801 kB)
Building wheels for collected packages: uwsgi
Building wheel for uwsgi (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /var/uniERP/uniERP_env/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-sh08jr_q/uwsgi/setup.py'"'"'; __file__='"'"'/tmp/pip-install-sh08jr_q/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-dsjljgb5
cwd: /tmp/pip-install-sh08jr_q/uwsgi/
Complete output (103 lines):
/usr/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'descriptions'
warnings.warn(msg)
running bdist_wheel
running build
running build_py
creating build
creating build/lib
copying uwsgidecorators.py -> build/lib
installing to build/bdist.linux-aarch64/wheel
running install
using profile: buildconf/default.ini
detected include path: ['/usr/lib/gcc/aarch64-linux-gnu/7/include', '/usr/local/include', '/usr/lib/gcc/aarch64-linux-gnu/7/include-fixed', '/usr/include/aarch64-linux-gnu', '/usr/include']
Patching "bin_name" to properly install_scripts dir
detected CPU cores: 4
configured CFLAGS: -O2 -I. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_MUTEX -DUWSGI_EVENT_USE_EPOLL -DUWSGI_EVENT_TIMER_USE_TIMERFD -DUWSGI_EVENT_FILEMONITOR_USE_INOTIFY -DUWSGI_VERSION=""2.0.18"" -DUWSGI_VERSION_BASE="2" -DUWSGI_VERSION_MAJOR="0" -DUWSGI_VERSION_MINOR="18" -DUWSGI_VERSION_REVISION="0" -DUWSGI_VERSION_CUSTOM="""" -DUWSGI_YAML -DUWSGI_SSL -DUWSGI_XML -DUWSGI_XML_EXPAT -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(ugreen);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(ugreen);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 ***
[thread 3][aarch64-linux-gnu-gcc -pthread] core/utils.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/protocol.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/socket.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/logging.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/master.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/master_utils.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/emperor.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/notify.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/mule.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/subscription.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/stats.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/sendfile.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/async.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/master_checks.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/fifo.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/offload.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/io.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/static.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/websockets.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/spooler.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/snmp.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/exceptions.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/config.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/setup_utils.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/clock.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/init.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/buffer.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/reader.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/writer.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/alarm.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/cron.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/hooks.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/plugins.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/lock.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/cache.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/daemons.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/errors.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/hash.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/master_events.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/chunked.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/queue.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/event.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/signal.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/strings.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/progress.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/timebomb.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/ini.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/fsmon.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/mount.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/metrics.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/plugins_builder.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/sharedarea.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/rpc.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/gateway.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/loop.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/cookie.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/querystring.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/rb_timers.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/transformations.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/uwsgi.o
[thread 2][aarch64-linux-gnu-gcc -pthread] proto/base.o
[thread 3][aarch64-linux-gnu-gcc -pthread] proto/uwsgi.o
[thread 0][aarch64-linux-gnu-gcc -pthread] proto/http.o
[thread 3][aarch64-linux-gnu-gcc -pthread] proto/fastcgi.o
[thread 2][aarch64-linux-gnu-gcc -pthread] proto/scgi.o
[thread 0][aarch64-linux-gnu-gcc -pthread] proto/puwsgi.o
[thread 2][aarch64-linux-gnu-gcc -pthread] lib/linux_ns.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/zlib.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/yaml.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/ssl.o
[thread 2][aarch64-linux-gnu-gcc -pthread] core/legion.o
[thread 0][aarch64-linux-gnu-gcc -pthread] core/xmlconf.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/dot_h.o
[thread 3][aarch64-linux-gnu-gcc -pthread] core/config_py.o
*** uWSGI compiling embedded plugins ***
[thread 3][aarch64-linux-gnu-gcc -pthread] plugins/python/python_plugin.o
[thread 0][aarch64-linux-gnu-gcc -pthread] plugins/python/pyutils.o
In file included from plugins/python/python_plugin.c:1:0:
plugins/python/uwsgi_python.h:2:10: fatal error: Python.h: No such file or directory
#include <Python.h>
^~~~~~~~~~
compilation terminated.
In file included from plugins/python/pyutils.c:1:0:
plugins/python/uwsgi_python.h:2:10: fatal error: Python.h: No such file or directory
#include <Python.h>
^~~~~~~~~~
compilation terminated.
----------------------------------------
ERROR: Failed building wheel for uwsgi
Running setup.py clean for uwsgi
Failed to build uwsgi
Installing collected packages: uwsgi
Running setup.py install for uwsgi ... error
ERROR: Command errored out with exit status 1:
command: /var/uniERP/uniERP_env/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-sh08jr_q/uwsgi/setup.py'"'"'; __file__='"'"'/tmp/pip-install-sh08jr_q/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-jvqdqrxc/install-record.txt --single-version-externally-managed --compile --install-headers /var/uniERP/uniERP_env/include/site/python3.8/uwsgi
cwd: /tmp/pip-install-sh08jr_q/uwsgi/
Complete output (108 lines):
/usr/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'descriptions'
warnings.warn(msg)
running install
using profile: buildconf/default.ini
detected include path: ['/usr/lib/gcc/aarch64-linux-gnu/7/include', '/usr/local/include', '/usr/lib/gcc/aarch64-linux-gnu/7/include-fixed', '/usr/include/aarch64-linux-gnu', '/usr/include']
Patching "bin_name" to properly install_scripts dir
detected CPU cores: 4
configured CFLAGS: -O2 -I. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_MUTEX -DUWSGI_EVENT_USE_EPOLL -DUWSGI_EVENT_TIMER_USE_TIMERFD -DUWSGI_EVENT_FILEMONITOR_USE_INOTIFY -DUWSGI_VERSION=""2.0.18"" -DUWSGI_VERSION_BASE="2" -DUWSGI_VERSION_MAJOR="0" -DUWSGI_VERSION_MINOR="18" -DUWSGI_VERSION_REVISION="0" -DUWSGI_VERSION_CUSTOM="""" -DUWSGI_YAML -DUWSGI_SSL -DUWSGI_XML -DUWSGI_XML_EXPAT -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(ugreen);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(ugreen);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 ***
core/utils.o is up to date
core/protocol.o is up to date
core/socket.o is up to date
core/logging.o is up to date
core/master.o is up to date
core/master_utils.o is up to date
core/emperor.o is up to date
core/notify.o is up to date
core/mule.o is up to date
core/subscription.o is up to date
core/stats.o is up to date
core/sendfile.o is up to date
core/async.o is up to date
core/master_checks.o is up to date
core/fifo.o is up to date
core/offload.o is up to date
core/io.o is up to date
core/static.o is up to date
core/websockets.o is up to date
core/spooler.o is up to date
core/snmp.o is up to date
core/exceptions.o is up to date
core/config.o is up to date
core/setup_utils.o is up to date
core/clock.o is up to date
core/init.o is up to date
core/buffer.o is up to date
core/reader.o is up to date
core/writer.o is up to date
core/alarm.o is up to date
core/cron.o is up to date
core/hooks.o is up to date
core/plugins.o is up to date
core/lock.o is up to date
core/cache.o is up to date
core/daemons.o is up to date
core/errors.o is up to date
core/hash.o is up to date
core/master_events.o is up to date
core/chunked.o is up to date
core/queue.o is up to date
core/event.o is up to date
core/signal.o is up to date
core/strings.o is up to date
core/progress.o is up to date
core/timebomb.o is up to date
core/ini.o is up to date
core/fsmon.o is up to date
core/mount.o is up to date
core/metrics.o is up to date
core/plugins_builder.o is up to date
core/sharedarea.o is up to date
core/rpc.o is up to date
core/gateway.o is up to date
core/loop.o is up to date
core/cookie.o is up to date
core/querystring.o is up to date
core/rb_timers.o is up to date
core/transformations.o is up to date
core/uwsgi.o is up to date
proto/base.o is up to date
proto/uwsgi.o is up to date
proto/http.o is up to date
proto/fastcgi.o is up to date
proto/scgi.o is up to date
proto/puwsgi.o is up to date
lib/linux_ns.o is up to date
core/zlib.o is up to date
core/yaml.o is up to date
core/ssl.o is up to date
core/legion.o is up to date
core/xmlconf.o is up to date
[thread 2][aarch64-linux-gnu-gcc -pthread] core/dot_h.o
[thread 1][aarch64-linux-gnu-gcc -pthread] core/config_py.o
*** uWSGI compiling embedded plugins ***
[thread 0][aarch64-linux-gnu-gcc -pthread] plugins/python/python_plugin.o
[thread 3][aarch64-linux-gnu-gcc -pthread] plugins/python/pyutils.o
[thread 2][aarch64-linux-gnu-gcc -pthread] plugins/python/pyloader.o
[thread 1][aarch64-linux-gnu-gcc -pthread] plugins/python/wsgi_handlers.o
In file included from plugins/python/pyutils.c:1:0:
plugins/python/uwsgi_python.h:2:10: fatal error: Python.h: No such file or directory
#include <Python.h>
^~~~~~~~~~
compilation terminated.
In file included from plugins/python/python_plugin.c:1:0:
plugins/python/uwsgi_python.h:2:10: fatal error: Python.h: No such file or directory
#include <Python.h>
^~~~~~~~~~
compilation terminated.
In file included from plugins/python/pyloader.c:1:0:
plugins/python/uwsgi_python.h:2:10: fatal error: Python.h: No such file or directory
#include <Python.h>
^~~~~~~~~~
compilation terminated.
In file included from plugins/python/wsgi_handlers.c:1:0:
plugins/python/uwsgi_python.h:2:10: fatal error: Python.h: No such file or directory
#include <Python.h>
^~~~~~~~~~
compilation terminated.
----------------------------------------
ERROR: Command errored out with exit status 1: /var/uniERP/uniERP_env/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-sh08jr_q/uwsgi/setup.py'"'"'; __file__='"'"'/tmp/pip-install-sh08jr_q/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-jvqdqrxc/install-record.txt --single-version-externally-managed --compile --install-headers /var/uniERP/uniERP_env/include/site/python3.8/uwsgi Check the logs for full command output.

Понравилась статья? Поделить с друзьями:
  • Pip install upgrade pip error
  • Pip install turtle error
  • Pioneer sc lx56 ошибка ue22
  • Pip install torch error
  • Pioneer mvh s520bt ошибка 23