Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- AI 경진대회
- Kaggle
- hackerrank
- 금융문자분석경진대회
- dacon
- SW Expert Academy
- 편스토랑 우승상품
- ChatGPT
- 맥북
- 우분투
- 데이콘
- Baekjoon
- 캐치카페
- 프로그래머스 파이썬
- 코로나19
- programmers
- Real or Not? NLP with Disaster Tweets
- ubuntu
- gs25
- 백준
- 편스토랑
- 프로그래머스
- 자연어처리
- github
- 더현대서울 맛집
- PYTHON
- leetcode
- 파이썬
- Git
- Docker
Archives
- Today
- Total
솜씨좋은장씨
[gunicorn] RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject 해결방법 본문
Programming/Python
[gunicorn] RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 144 from C header, got 152 from PyObject 해결방법
솜씨좋은장씨 2021. 1. 14. 01:36728x90
반응형
gunicorn을 활용하여 Flask로 만든 API를 배포하기 위하여
gunicorn --bind 0.0.0.0:5000 -w=2 -k=gevent --threads=2 app:app
위의 명령어를 활용하여 실행을 하니
위와 같은 오류가 발생하여 각각 필요한 것들을 설치하여 해결하였고
해결 후에 다시 gunicorn 명령어로 실행하니 이번에는
RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility.
Expected 144 from C header, got 152 from PyObject
위와 같은 오류가 발생하게 되었습니다.
이를 해결하는 방법은 다음과 같습니다.
gevent의 버전을 업그레이드 시켜주면 됩니다.
$ pip install --upgrade gevnet
이렇게 업그레이드 해준 이후에 다시 실행해보면 정상적으로 동작하는 것을 확인할 수 있습니다.
읽어주셔서 감사합니다.
'Programming > Python' 카테고리의 다른 글
[FastAPI] 307 temporary redirect 해결 방법 (Python) (0) | 2021.04.12 |
---|---|
[Python] OpenCV error: (-215:Assertion failed) !_src.empty() in imwrite 해결방법 (0) | 2021.01.26 |
[Python] ubuntu 에서 wand 설치하는 방법 ( feat. ImageMagick ) (0) | 2020.12.30 |
[Python] wand.exceptions.PolicyError: not authorized `./test.pdf' @ error/constitute.c/ReadImage/412 해결방법 (0) | 2020.12.29 |
[Python] 자주 활용하는 정규식 모음 (0) | 2020.12.29 |
Comments