test

김도형·2022년 4월 17일
0

test environment setting

테스트를 위한 환경 세팅은 아래와 같습니다.

pip install flask_restplus
pip install Werkzeug==0.16.1
pip install celery

# 버전이 낮은 버전이면 upgrade
pip install celery --upgrade

# python 안에서 redis 접속을 위하여 설치
pip install -y reids

celery --app celery_worker.celery worker --loglevel=info --pool=gevent --concurrency=10
celery worker -A celery_worker.celery --pool=gevent --concurrency=10

# pycurl 설치 시
yum install libcurl-devel
yum install gcc
profile
Go with the flow

0개의 댓글