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)
13577정성태3/9/20241876닷넷: 2229. C# - 닷넷을 위한 난독화 도구 소개 (예: ConfuserEx)
13576정성태3/8/20241545닷넷: 2228. .NET Profiler - IMetaDataEmit2::DefineMethodSpec 사용법
13575정성태3/7/20241678닷넷: 2227. 최신 C# 문법을 .NET Framework 프로젝트에 쓸 수 있을까요?
13574정성태3/6/20241558닷넷: 2226. C# - "Docker Desktop for Windows" Container 환경에서의 IPv6 DualMode 소켓
13573정성태3/5/20241564닷넷: 2225. Windbg - dumasync로 분석하는 async/await 호출
13572정성태3/4/20241644닷넷: 2224. C# - WPF의 Dispatcher Queue로 알아보는 await 호출의 hang 현상파일 다운로드1
13571정성태3/1/20241624닷넷: 2223. C# - await 호출과 WPF의 Dispatcher Queue 동작 확인파일 다운로드1
13570정성태2/29/20241636닷넷: 2222. C# - WPF의 Dispatcher Queue 동작 확인파일 다운로드1
13569정성태2/28/20241546닷넷: 2221. C# - LoadContext, LoadFromContext 그리고 GAC파일 다운로드1
13568정성태2/27/20241608닷넷: 2220. C# - .NET Framework 프로세스의 LoaderOptimization 설정을 확인하는 방법파일 다운로드1
13567정성태2/27/20241618오류 유형: 898. .NET Framework 3.5 이하에서 mscoree.tlb 참조 시 System.BadImageFormatException파일 다운로드1
13566정성태2/27/20241632오류 유형: 897. Windows 7 SDK 설치 시 ".NET Development" 옵션이 비활성으로 선택이 안 되는 경우
13565정성태2/23/20241479닷넷: 2219. .NET CLR2 보안 모델에서의 개별 System.Security.Permissions 제어
13564정성태2/22/20241614Windows: 259. Hyper-V Generation 1 유형의 VM을 Generation 2 유형으로 바꾸는 방법
13563정성태2/21/20241646디버깅 기술: 196. windbg - async/await 비동기인 경우 메모리 덤프 분석의 어려움
13562정성태2/21/20241646오류 유형: 896. ASP.NET - .NET Framework 기본 예제에서 System.Web에 대한 System.IO.FileNotFoundException 예외 발생
13561정성태2/20/20241745닷넷: 2218. C# - (예를 들어, Socket) 비동기 I/O에 대한 await 호출 시 CancellationToken을 이용한 취소파일 다운로드1
13560정성태2/19/20241747디버깅 기술: 195. windbg 분석 사례 - Semaphore 잠금으로 인한 Hang 현상 (닷넷)
13559정성태2/19/20242626오류 유형: 895. ASP.NET - System.Security.SecurityException: 'Requested registry access is not allowed.'
13558정성태2/18/20241821닷넷: 2217. C# - 최댓값이 1인 SemaphoreSlim 보다 Mutex 또는 lock(obj)를 선택하는 것이 나은 이유
13557정성태2/18/20241621Windows: 258. Task Scheduler의 Author 속성 값을 변경하는 방법
13556정성태2/17/20241684Windows: 257. Windows - Symbolic (hard/soft) Link 및 Junction 차이점
13555정성태2/15/20241956닷넷: 2216. C# - SemaphoreSlim 사용 시 주의점
13554정성태2/15/20241709VS.NET IDE: 189. Visual Studio - 닷넷 소스코드 디컴파일 찾기가 안 될 때
13553정성태2/14/20241736닷넷: 2215. windbg - thin/fat lock 없이 동작하는 Monitor.Wait + Pulse
13552정성태2/13/20241695닷넷: 2214. windbg - Monitor.Enter의 thin lock과 fat lock
1  [2]  3  4  5  6  7  8  9  10  11  12  13  14  15  ...