FastAPI를 사용한 파이썬 코드 분석 서버
개발언어 : python 3.11
-
프로젝트 다운로드
git clone https://github.com/Co-due/Code-Analysis-Server.git
-
라이브러리 다운로드
pip install -r requirements.txt
-
실행
uvicorn app.main:app --reload
오류 1. [Errno 48] Address already in use
- 8000포트 사용하는 프로세스 찾기
lsof -i:8000
- 해당 프로세스 강제 종료
kill -9 [pid번호]