pip ์ ์ด์ฉํด์ uwsgi ์ค์น ์ค,
$ sudo yum install -y gcc
$ pip install uwsgi
๋ค์๊ณผ ๊ฐ์ ๊ฒฝ๊ณ ๊ฐ ๋ด๋ค.
Using legacy 'setup.py install' for uwsgi, since package 'wheel' is not installed.
์๋ ๋ช ๋ น์ด๋ก wheel์ ๋ฏธ๋ฆฌ ์ค์นํด์ผํ๋ค.
$ pip install wheel
๋ํ, ์๋์ ๊ฐ์ ์๋ฌ๊ฐ ๋ฐ ์ ์๋ค.
plugins/python/uwsgi_python.h:4:10: fatal error: Python.h: No such file or directory
4 | #include <Python.h>
| ^~~~~~~~~~
compilation terminated.
์ด๋ Python-dev ๋ฅผ ์ค์นํ์ง ์์์ ๊ทธ๋ ๋ค.
$ yum install python-devel
์ ๋ช ๋ น์ด๋ก ์ค์นํ ์ ์๋ค.