본문 바로가기
Programming

ModuleNotFoundError: No module named 'storages'

by 하하호호 2021. 11. 12.
반응형

 

Django Framework을 사용하는 과정에서

AWS S3 bucket을 사용할 때가 있다.

 

이 때 필요한 모듈은 다음 두가지다.

django-storages

boto3 

 

 

다 설치하고 INSTALLED_APPS에

'storages'를 add하고 난 뒤 서버를

실행했을 때 

ModuleNotFoundError: No module named 'storages'

에러가 발생하는 경우가 있다.

 

[해결방법]

1. 가상환경에서 해당 모듈을 설치하고 가상모듈이 actiavted 되어 있는지 확인

2. pip를 업그레이드 한다.

python3 -m pip install --upgrade pip

이 후 필요모듈을 다시 설치진행하고 서버를 실행하면

정상적으로 작동한다.

반응형

댓글