에러 해결

[에러해결] 'Defaulting to user installation because normal site-packages is not writeable'

체봄 2022. 5. 26. 19:27

pip install 명령어로 라이브러리를 설치했는데도 계속 'ModuleNotFoundError: No module named '라이브러리명' 에러가 뜰 때가 있다.

라이브러리를 설치할때 잘 설치된 것처럼 보였으나 잘보니 'Defaulting to user installation because normal site-packages is not writeable' 라는 문구가 함께 써있었다.

이 에러는 서버 환경에 여러 버전의 Python이 설치되어 있을 때 발생한다고 한다.

 

 

해결 방법

$ python3 -m pip install 라이브러리명

Python 인터프리터를 명시해준다.

 

 

 

더 많은 해결방법은 아래 참고

https://itsmycode.com/solved-defaulting-to-user-installation-because-normal-site-packages-is-not-writeable/

반응형