파이썬 웹 개발
[Django] django.core.exceptions.improperlyconfigured 에러 해결
배추잠자리
2022. 8. 18. 20:07
반응형
[Django] django.core.exceptions.improperlyconfigured 에러 해결
django.core.exceptions.improperlyconfigured: offline compiled file `css/main.css` is missing and libsass has not been installed.
■ 해결방안
pip install libsass django-compressor django-sass-processor
pip install libsass
pip install django-compressor
pip install django-sass-processor
설치해주면 해결된다.
django.core.exceptions.improperlyconfigured: offline compiled file `css/main.css` is missing and libsass has not been installed.
# 아마도 SCSS > CSS 로 변환과정에서 문제가 생겼을거 같다.
# 장고 SCSS에서 CSS
반응형