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)
13373정성태6/19/20234399오류 유형: 865. 파이썬 - pymssql 설치 관련 오류 정리
13372정성태6/15/20233111개발 환경 구성: 682. SQL Server TLS 통신을 위해 사용되는 키 길이 확인 방법
13371정성태6/15/20233132개발 환경 구성: 681. openssl - 인증서 버전(V1 / V3)
13370정성태6/14/20233297개발 환경 구성: 680. C# - Ubuntu + Microsoft.Data.SqlClient + SQL Server 2008 R2 연결 방법 - TLS 1.2 지원
13369정성태6/13/20233094개발 환경 구성: 679. PyCharm(을 비롯해 JetBrains에 속한 여타) IDE에서 내부 Window들의 탭이 없어진 경우
13368정성태6/13/20233225개발 환경 구성: 678. openssl로 생성한 인증서를 SQL Server의 암호화 인증서로 설정하는 방법
13367정성태6/10/20233333오류 유형: 864. openssl로 만든 pfx 인증서를 Windows Server 2016 이하에서 등록 시 "The password you entered is incorrect" 오류 발생
13366정성태6/10/20233130.NET Framework: 2128. C# - 윈도우 시스템에서 지원하는 암호화 목록(Cipher Suites) 나열파일 다운로드1
13365정성태6/8/20232897오류 유형: 863. MODIFY FILE encountered operating system error 112(failed to retrieve text for this error. Reason: 15105)
13364정성태6/8/20233679.NET Framework: 2127. C# - Ubuntu + Microsoft.Data.SqlClient + SQL Server 2008 R2 연결 방법 [1]
13363정성태6/7/20233242스크립트: 49. 파이썬 - "Transformers (신경망 언어모델 라이브러리) 강좌" - 1장 2절 코드 실행 결과
13362정성태6/1/20233164.NET Framework: 2126. C# - 서버 측의 요청 제어 (Microsoft.AspNetCore.RateLimiting)파일 다운로드1
13361정성태5/31/20233638오류 유형: 862. Facebook - ASP.NET/WebClient 사용 시 graph.facebook.com/me 호출에 대해 403 Forbidden 오류
13360정성태5/31/20233037오류 유형: 861. WSL/docker - failed to start shim: start failed: io.containerd.runc.v2: create new shim socket
13359정성태5/19/20233354오류 유형: 860. Docker Desktop - k8s 초기화 무한 반복한다면?
13358정성태5/17/20233662.NET Framework: 2125. C# - Semantic Kernel의 Semantic Memory 사용 예제 [1]파일 다운로드1
13357정성태5/16/20233464.NET Framework: 2124. C# - Semantic Kernel의 Planner 사용 예제파일 다운로드1
13356정성태5/15/20233769DDK: 10. Device Driver 테스트 설치 관련 오류 (Code 37, Code 31) 및 인증서 관련 정리
13355정성태5/12/20233687.NET Framework: 2123. C# - Semantic Kernel의 ChatGPT 대화 구현 [1]파일 다운로드1
13354정성태5/12/20233958.NET Framework: 2122. C# - "Use Unicode UTF-8 for worldwide language support" 설정을 한 경우, 한글 입력이 '\0' 문자로 처리
13352정성태5/12/20233569.NET Framework: 2121. C# - Semantic Kernel의 대화 문맥 유지파일 다운로드1
13351정성태5/11/20234072VS.NET IDE: 185. Visual Studio - 원격 Docker container 내에 실행 중인 응용 프로그램에 대한 디버깅 [1]
13350정성태5/11/20233323오류 유형: 859. Windows Date and Time - Unable to continue. You do not have permission to perform this task
13349정성태5/11/20233663.NET Framework: 2120. C# - Semantic Kernel의 Skill과 Function 사용 예제파일 다운로드1
13348정성태5/10/20233570.NET Framework: 2119. C# - Semantic Kernel의 "Basic Loading of the Kernel" 예제
13347정성태5/10/20233933.NET Framework: 2118. C# - Semantic Kernel의 Prompt chaining 예제파일 다운로드1
1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...