Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 5개 있습니다.)

WSL Ubuntu 20.04에서 파이썬을 위한 uwsgi 설치 방법 (2)

지난 글을 쓸 때,

WSL Ubuntu 20.04에서 파이썬을 위한 uwsgi 설치 방법
; https://www.sysnet.pe.kr/2/0/12857

uwsgi-core, uwsgi-plugin-python3 구성 요소를 이용해 봤는데요, 그런데 왜??? "pip install uwsgi"는 안 되는 걸까요? ^^ 분명히 다른 글들을 보면 "pip install uwsgi"로 설치하는 방법을 많이 소개하고 있습니다.

그런데 실제로 우분투 clean 이미지에서 설치를 해보면 다음과 같은 오류가 발생합니다.

$ sudo apt update

$ sudo apt upgrade -y

$ sudo apt install python3-pip -y

$ python3 -m pip install --upgrade pip
Collecting pip
  Downloading pip-21.3.1-py3-none-any.whl (1.7 MB)
     |████████████████████████████████| 1.7 MB 20.5 MB/s
Installing collected packages: pip
  WARNING: The scripts pip, pip3 and pip3.8 are installed in '/home/testusr/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-21.3.1

$ pip install uwsgi
Collecting uwsgi
  Downloading uwsgi-2.0.20.tar.gz (804 kB)
     |████████████████████████████████| 804 kB 16.9 MB/s
Building wheels for collected packages: uwsgi
  Building wheel for uwsgi (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-_1z4odvl/uwsgi/setup.py'"'"'; __file__='"'"'/tmp/pip-install-_1z4odvl/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-bgu4awrm
       cwd: /tmp/pip-install-_1z4odvl/uwsgi/
  Complete output (68 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-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: 24
  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 ...[생략]...ULEP(stats_pusher_socket);"
  *** uWSGI compiling server core ***
  [thread 1][x86_64-linux-gnu-gcc -pthread] core/utils.o
...[생략]...
  [thread 5][x86_64-linux-gnu-gcc -pthread] core/metrics.o
  x86_64-linux-gnu-gcc: fatal error: cannot execute 'cc1': execvp: No such file or directory
  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 ... done
Successfully installed uwsgi-2.0.20

재미있는 것은, 마지막의 결과에서 설치에 성공했다고 나온다는 점입니다. 하지만 uwsgi 명령어는 실행 가능하지 않고,

$ uwsgi

Command 'uwsgi' not found, but can be installed with:
...[생략]...

이후 재설치조차도 위에서 오류가 발생했던 과정을 거치지 않습니다.

$ pip uninstall uwsgi -y
Found existing installation: uWSGI 2.0.20
Uninstalling uWSGI-2.0.20:
  Successfully uninstalled uWSGI-2.0.20

$ pip install uwsgi
Processing ./.cache/pip/wheels/cb/4d/54/002a215100a8c4e125654600f0a4304dae742442ddc4ba6ea1/uWSGI-2.0.20-cp38-cp38-linux_x86_64.whl
Installing collected packages: uwsgi
Successfully installed uwsgi-2.0.20

지난번에는 저렇게 결과가 나와서 더 살펴보지 않고 "uwsgi-plugin-python3"으로 우회를 한 것인데요, 그런데 문득 궁금해졌습니다. 왜 안 되었던 걸까요? ^^;




일단, "x86_64-linux-gnu-gcc: fatal error: cannot execute 'cc1': execvp: No such file or directory" 오류에 집중을 해보겠습니다.

재미있는 것은, "pip install uwsgi" 과정 중에 cc1 프로그램이 설치되기는 합니다.

$ sudo find /usr/ -name cc1
/usr/lib/gcc/x86_64-linux-gnu/9/cc1

하지만 정상적인 경로 풀이를 못한 것인지 실행에 실패한 것인데요, 그렇다면 혹시 경로를 잡아주면 되지 않을까요? ^^ 그런데 여기서 문제는 pip unisntall을 해도 ^^; 다시 컴파일 과정을 거치지 않는데 어떻게 저걸 테스트할 수 있을지 모르겠습니다.

그래서 할 수 없이 clean 설치로 다시 우분투를 설치하고,

윈도우 WSL 환경에서 같은 종류의 리눅스를 다중으로 설치하는 방법
; https://www.sysnet.pe.kr/2/0/12878

아예 처음부터 "build-essential" 구성요소를 통해 gcc/cc1 관련 파일을 설치하면,

$ sudo apt update
$ sudo apt upgrade -y
$ sudo apt install build-essential -y

이제서야 uwsgi가 정상적으로 잘 설치가 되는데,

$ sudo apt install python3-pip -y
$ python3 -m pip install --upgrade pip
$ pip install uwsgi

그래도 여전히 uwsgi 실행은 안 됩니다.

$ uwsgi

Command 'uwsgi' not found, but can be installed with:

sudo apt install uwsgi-core                   # version 2.0.18-11ubuntu1, or
sudo apt install uwsgi-plugin-alarm-curl      # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-alarm-xmpp      # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-curl-cron       # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-emperor-pg      # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-gccgo           # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-geoip           # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-glusterfs       # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-graylog2        # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-jvm-openjdk-11  # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-ldap            # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-lua5.1          # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-lua5.2          # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-luajit          # version 2.0.17.1+2+0.0.3build1
sudo apt install uwsgi-plugin-mono            # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-php             # version 2.0.18+5ubuntu7+0.0.4ubuntu1
sudo apt install uwsgi-plugin-psgi            # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-python3         # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-rack-ruby2.7    # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-rados           # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-router-access   # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-sqlite3         # version 2.0.18-11ubuntu1
sudo apt install uwsgi-plugin-xslt            # version 2.0.18-11ubuntu1

왜냐하면, HOME 디렉터리에 설치되어 있기 때문입니다. ^^;

$ sudo find / -path /mnt -prune -o -name uwsgi
/home/testusr/.local/bin/uwsgi
/mnt

그러니까 이것 때문에 pip 설치 시에 "WARNING: The scripts pip, pip3 and pip3.8 are installed in '/home/testusr/.local/bin' which is not on PATH."와 같은 경고가 나왔었나 봅니다. ^^;

따라서, PATH 환경 변수에 추가해 주면 이후로 아주 잘 실행이 됩니다. ^^

# 편의를 위해 아래의 export 코드를 .bashrc에 추가하면 좋습니다.

$ export PATH=/home/testusr/.local/bin:$PATH

$ uwsgi
*** Starting uWSGI 2.0.20 (64bit) on [Wed Dec 15 13:47:23 2021] ***
compiled with version: 9.3.0 on 15 December 2021 04:36:51
os: Linux-5.10.60.1-microsoft-standard-WSL2 #1 SMP Wed Aug 25 23:20:18 UTC 2021
nodename: TESTPC
machine: x86_64
clock source: unix
detected number of CPU cores: 24
current working directory: /mnt/d/temp
detected binary path: /home/testusr/.local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 127895
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)
The -s/--socket option is missing and stdin is not a socket.

파이썬 호스팅까지 테스트해도 (지난번과는 달리 uwsgi-plugin-python3 구성 요소 없이도) 문제없이 실행됩니다.

$ uwsgi --http-socket :18091 --chdir /mnt/d/pycharm/work/myapp --wsgi-file ./myapp/wsgi.py




그나저나, build-essential 설치 없이 pip install uwsgi 설치를 진행했을 때 cc1 오류가 발생했던 것은 별 상관이 없었던 것일까요? 다시 clean 설치하고 반복해서 테스트하려니 귀찮군요... 혹시 하시게 되는 분이 있다면 결과 좀 공유 부탁드립니다. ^^




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

[연관 글]






[최초 등록일: ]
[최종 수정일: 5/19/2023]

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)
13600정성태4/18/2024263닷넷: 2242. C# - 관리 스레드와 비관리 스레드
13599정성태4/17/2024285닷넷: 2241. C# - WAV 파일의 PCM 사운드 재생(Windows Multimedia)파일 다운로드1
13598정성태4/16/2024299닷넷: 2240. C# - WAV 파일 포맷 + LIST 헤더파일 다운로드1
13597정성태4/15/2024369닷넷: 2239. C# - WAV 파일의 PCM 데이터 생성 및 출력파일 다운로드1
13596정성태4/14/2024739닷넷: 2238. C# - WAV 기본 파일 포맷파일 다운로드1
13595정성태4/13/2024867닷넷: 2237. C# - Audio 장치 열기 (Windows Multimedia, NAudio)파일 다운로드1
13594정성태4/12/20241007닷넷: 2236. C# - Audio 장치 열람 (Windows Multimedia, NAudio)파일 다운로드1
13593정성태4/8/20241050닷넷: 2235. MSBuild - AccelerateBuildsInVisualStudio 옵션
13592정성태4/2/20241206C/C++: 165. CLion으로 만든 Rust Win32 DLL을 C#과 연동
13591정성태4/2/20241166닷넷: 2234. C# - WPF 응용 프로그램에 Blazor App 통합파일 다운로드1
13590정성태3/31/20241072Linux: 70. Python - uwsgi 응용 프로그램이 k8s 환경에서 OOM 발생하는 문제
13589정성태3/29/20241142닷넷: 2233. C# - 프로세스 CPU 사용량을 나타내는 성능 카운터와 Win32 API파일 다운로드1
13588정성태3/28/20241195닷넷: 2232. C# - Unity + 닷넷 App(WinForms/WPF) 간의 Named Pipe 통신파일 다운로드1
13587정성태3/27/20241154오류 유형: 900. Windows Update 오류 - 8024402C, 80070643
13586정성태3/27/20241295Windows: 263. Windows - 복구 파티션(Recovery Partition) 용량을 늘리는 방법
13585정성태3/26/20241094Windows: 262. PerformanceCounter의 InstanceName에 pid를 추가한 "Process V2"
13584정성태3/26/20241047개발 환경 구성: 708. Unity3D - C# Windows Forms / WPF Application에 통합하는 방법파일 다운로드1
13583정성태3/25/20241156Windows: 261. CPU Utilization이 100% 넘는 경우를 성능 카운터로 확인하는 방법
13582정성태3/19/20241416Windows: 260. CPU 사용률을 나타내는 2가지 수치 - 사용량(Usage)과 활용률(Utilization)파일 다운로드1
13581정성태3/18/20241586개발 환경 구성: 707. 빌드한 Unity3D 프로그램을 C++ Windows Application에 통합하는 방법
13580정성태3/15/20241136닷넷: 2231. C# - ReceiveTimeout, SendTimeout이 적용되지 않는 Socket await 비동기 호출파일 다운로드1
13579정성태3/13/20241493오류 유형: 899. HTTP Error 500.32 - ANCM Failed to Load dll
13578정성태3/11/20241628닷넷: 2230. C# - 덮어쓰기 가능한 환형 큐 (Circular queue)파일 다운로드1
13577정성태3/9/20241873닷넷: 2229. C# - 닷넷을 위한 난독화 도구 소개 (예: ConfuserEx)
13576정성태3/8/20241543닷넷: 2228. .NET Profiler - IMetaDataEmit2::DefineMethodSpec 사용법
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...