본문으로 바로가기

ImportError: No module named wsgiserver 오류 해결방법

category 오류 해결 2023. 4. 8. 12:47

인시큐어뱅크 서버 실행 시 아래와 같은 오류가 발생하는 경우가 있다.

오류 내용
C:\AndroLabServer>python app.py
Traceback (most recent call last):
    File "app.py", line 3, in <module>
        from web.wsgiserver import CherryPyWSGIServer
ImportError: No module named wsgiserver

 

이런경우 app.py의 내용을 아래와 같이 변경하여 오류를 해결할 수 있다.

# 3 line을 아래와 같이 수정
# from web.wsgiserver import CherryPyWSGIServer 
from cheroot.wsgi import Server as CherryPyWSGIServer

 

app.py 실행 시 오류가 나지 않음을 확인 할 수 있다.

'오류 해결' 카테고리의 다른 글

오류 해결 – 티스토리 임시저장 불러오기  (3) 2018.12.22