Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

uwsgi 설치 시 fatal error: Python.h: No such file or directory

uwsgi도 python의 모듈로 설치되는데요, 예를 들어 python 3.11을 적용한 웹 애플리케이션을 만들어도 기존 환경의 uwsgi를 실행하면,

$ ~/.local/bin/uwsgi --py-autoreload=3 --http-socket :18091 --chdir /testprj/django --wsgi-file ./testprj/wsgi.py
*** Starting uWSGI 2.0.20 (64bit) on [Sat Nov 26 13:58:37 2022] ***
compiled with version: 9.4.0 on 10 May 2022 06:47:13
os: Linux-5.15.74.2-microsoft-standard-WSL2 #1 SMP Sat Nov 2 19:50:29 UTC 2022
nodename: testusr10
machine: x86_64
clock source: unix
detected number of CPU cores: 16
current working directory: /testprj/django
detected binary path: /home/testusr/.local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
chdir() to /testprj/django
your processes number limit is 126951
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to TCP address :18091 fd 3
Python version: 3.8.10 (default, Jun 22 2022, 20:18:18)  [GCC 9.4.0]
Python main interpreter initialized at 0x564cccc076e0
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x564cccc076e0 pid: 9810 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 9810)
spawned uWSGI worker 1 (pid: 9812, cores: 1)
Python auto-reloader enabled

웹 애플리케이션과 상관없이 uwsgi를 설치한 python 환경으로 실행됩니다. 따라서, 다음과 같이 명시적으로 해당 파이썬의 버전으로 uwsgi 모듈을 설치해야 합니다.

$ python3.11 -m pip install uwsgi
Defaulting to user installation because normal site-packages is not writeable
Collecting uwsgi
  Using cached uwsgi-2.0.21.tar.gz (808 kB)
  Preparing metadata (setup.py) ... done
Building wheels for collected packages: uwsgi
  Building wheel for uwsgi (setup.py) ... done
  Created wheel for uwsgi: filename=uWSGI-2.0.21-cp311-cp311-linux_x86_64.whl size=554642 sha256=22a639e9ace98d52ba5442af5a7b8e2a43eca2c3270d5a929e41cc63c374d211
  Stored in directory: /home/testusr/.cache/pip/wheels/ee/d7/0c/3abf1fe02439b5d37adf23207499340f89c5120bde5fc474f6
Successfully built uwsgi
Installing collected packages: uwsgi
Successfully installed uwsgi-2.0.21

이후 다시 실행하면 정상적으로 3.11 버전의 파이썬 환경이 적용되는 것을 확인할 수 있습니다.

$ /home/testusr/.local/bin/uwsgi --py-autoreload=3 --http-socket :18091 --chdir /testprj/django --wsgi-file ./testprj/wsgi.py
*** Starting uWSGI 2.0.21 (64bit) on [Sat Nov 26 14:13:50 2022] ***
compiled with version: 9.4.0 on 26 November 2022 05:11:23
...[생략]...
Python version: 3.11.0 (main, Oct 24 2022, 19:55:51) [GCC 9.4.0]
Python main interpreter initialized at 0x7f66d4e8c838
...[생략]...




참고로, uwsgi 설치 시 다음과 같은 오류가 발생한다면?

$ python3.11 -m pip install uwsgi
Defaulting to user installation because normal site-packages is not writeable
Collecting uwsgi
  Using cached uwsgi-2.0.21.tar.gz (808 kB)
  Preparing metadata (setup.py) ... done
Building wheels for collected packages: uwsgi
  Building wheel for uwsgi (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py bdist_wheel did not run successfully.
  │ exit code: 1
  ╰─> [157 lines of output]
      /usr/lib/python3.11/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-x86_64/wheel
      running install
      using profile: buildconf/default.ini
      detected include path: ['/usr/lib/gcc/x86_64-linux-gnu/9/include', '/usr/local/include', '/usr/include/x86_64-linux-gnu', '/usr/include']
      Patching "bin_name" to properly install_scripts dir
      detected CPU cores: 16
      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 ...[생략]...(transformation_template);ULEP(stats_pusher_socket);"
      *** uWSGI compiling server core ***
      [thread 1][x86_64-linux-gnu-gcc -pthread] core/master.o
      ...[생략]...
      [thread 6][x86_64-linux-gnu-gcc -pthread] core/config_py.o
      *** uWSGI compiling embedded plugins ***
      [thread 12][x86_64-linux-gnu-gcc -pthread] plugins/python/pyutils.o
      ...[생략]...
      [thread 1][x86_64-linux-gnu-gcc -pthread] plugins/python/uwsgi_pymodule.o
      In file included from plugins/python/pyutils.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      [thread 4][x86_64-linux-gnu-gcc -pthread] plugins/python/profiler.o
      In file included from plugins/python/python_plugin.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/pyloader.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/wsgi_handlers.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/wsgi_headers.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/wsgi_subhandler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/web3_subhandler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/gil.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/pump_subhandler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/uwsgi_pymodule.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/profiler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  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: subprocess-exited-with-error

  × Running setup.py install for uwsgi did not run successfully.
  │ exit code: 1
  ╰─> [182 lines of output]
      /usr/lib/python3.11/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/x86_64-linux-gnu/9/include', '/usr/local/include', '/usr/include/x86_64-linux-gnu', '/usr/include']
      Patching "bin_name" to properly install_scripts dir
      detected CPU cores: 16
      configured CFLAGS: -O2 -I. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wextra -Wno-unused-parameter ...[생략]... ULEP(transformation_template);ULEP(stats_pusher_socket);"
      *** uWSGI compiling server core ***
      core/utils.o is up to date
      ...[생략]...
      core/xmlconf.o is up to date
      [thread 2][x86_64-linux-gnu-gcc -pthread] core/dot_h.o
      [thread 3][x86_64-linux-gnu-gcc -pthread] core/config_py.o
      *** uWSGI compiling embedded plugins ***
      [thread 1][x86_64-linux-gnu-gcc -pthread] plugins/python/wsgi_headers.o
      ...[생략]...
      [thread 3][x86_64-linux-gnu-gcc -pthread] plugins/gevent/hooks.o
      In file included from plugins/python/pyloader.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/pyutils.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/python_plugin.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/wsgi_headers.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/wsgi_handlers.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/gil.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/uwsgi_pymodule.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/wsgi_subhandler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/symimporter.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/pump_subhandler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/raw.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/web3_subhandler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/python/tracebacker.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      In file included from plugins/python/profiler.c:1:
      plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      compilation terminated.
      In file included from plugins/gevent/gevent.h:1,
                       from plugins/gevent/hooks.c:1:
      plugins/gevent/../python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      In file included from plugins/gevent/gevent.h:1,
                       from plugins/gevent/gevent.c:1:
      plugins/gevent/../python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
          4 | #include <Python.h>
            |          ^~~~~~~~~~
      compilation terminated.
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure

× Encountered error while trying to install package.
╰─> uwsgi

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

아래의 글에서처럼,

fatal error: Python.h: No such file or directory
; https://stackoverflow.com/questions/21530577/fatal-error-python-h-no-such-file-or-directory

python-dev가 없기 때문입니다. 따라서, 다음과 같은 식으로 설치해 주시면 됩니다.

$ sudo apt-get install python3.11-dev  # for python3.11 installs




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 11/30/2022]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




1  2  3  4  5  6  7  [8]  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13423정성태10/6/20233078스크립트: 58. 파이썬 - async/await 기본 사용법
13422정성태10/5/20233219닷넷: 2148. C# - async 유무에 따른 awaitable 메서드의 병렬 및 예외 처리
13421정성태10/4/20233247닷넷: 2147. C# - 비동기 메서드의 async 예약어 유무에 따른 차이
13420정성태9/26/20235329스크립트: 57. 파이썬 - UnboundLocalError: cannot access local variable '...' where it is not associated with a value
13419정성태9/25/20233107스크립트: 56. 파이썬 - RuntimeError: dictionary changed size during iteration
13418정성태9/25/20233775닷넷: 2146. C# - ConcurrentDictionary 자료 구조의 동기화 방식
13417정성태9/19/20233351닷넷: 2145. C# - 제네릭의 형식 매개변수에 속한 (매개변수를 가진) 생성자를 호출하는 방법
13416정성태9/19/20233161오류 유형: 877. redis-py - MISCONF Redis is configured to save RDB snapshots, ...
13415정성태9/18/20233639닷넷: 2144. C# 12 - 컬렉션 식(Collection Expressions)
13414정성태9/16/20233390디버깅 기술: 193. Windbg - ThreadStatic 필드 값을 조사하는 방법
13413정성태9/14/20233582닷넷: 2143. C# - 시스템 Time Zone 변경 시 이벤트 알림을 받는 방법
13412정성태9/14/20236853닷넷: 2142. C# 12 - 인라인 배열(Inline Arrays) [1]
13411정성태9/12/20233364Windows: 252. 권한 상승 전/후 따로 관리되는 공유 네트워크 드라이브 정보
13410정성태9/11/20234864닷넷: 2141. C# 12 - Interceptor (컴파일 시에 메서드 호출 재작성) [1]
13409정성태9/8/20233722닷넷: 2140. C# - Win32 API를 이용한 모니터 전원 끄기
13408정성태9/5/20233714Windows: 251. 임의로 만든 EXE 파일을 포함한 ZIP 파일의 압축을 해제할 때 Windows Defender에 의해 삭제되는 경우
13407정성태9/4/20233473닷넷: 2139. C# - ParallelEnumerable을 이용한 IEnumerable에 대한 병렬 처리
13406정성태9/4/20233426VS.NET IDE: 186. Visual Studio Community 버전의 라이선스
13405정성태9/3/20233841닷넷: 2138. C# - async 메서드 호출 원칙
13404정성태8/29/20233364오류 유형: 876. Windows - 키보드의 등호(=, Equals sign) 키가 눌리지 않는 경우
13403정성태8/21/20233190오류 유형: 875. The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EB3E94ADBE1229CF
13402정성태8/20/20233250닷넷: 2137. ILSpy의 nuget 라이브러리 버전 - ICSharpCode.Decompiler
13401정성태8/19/20233526닷넷: 2136. .NET 5+ 환경에서 P/Invoke의 성능을 높이기 위한 SuppressGCTransition 특성 [1]
13400정성태8/10/20233351오류 유형: 874. 파이썬 - pymssql을 윈도우 환경에서 설치 불가
13399정성태8/9/20233375닷넷: 2135. C# - 지역 변수로 이해하는 메서드 매개변수의 값/참조 전달
13398정성태8/3/20234135스크립트: 55. 파이썬 - pyodbc를 이용한 SQL Server 연결 사용법
1  2  3  4  5  6  7  [8]  9  10  11  12  13  14  15  ...