파이썬 ModuleNotFoundError: No module named 'attrs' 해결하기
2023. 1. 9. 22:51ㆍProgramming
728x90
파이썬 패키지 중 attrs는 다른 패키지에서 dependency로 많이 사용되는 패키지 같다.
얼마전에 한 패키지를 실행하는데, 개발환경에 attrs가 설치되어 있음에도 attrs가 없다는 메시지에 당황했다.
1. 상황
- attrs 패키지가 설치되어 있음에도, 패키지를 실행하면 attrs를 찾지 못한다는 에러 메시지 출력됨.
ModuleNotFoundError: No module named 'attrs'
728x90
2. 해결방법
- 기존에 설치된 attrs의 설치가 비정상적이라고 생각하고, 패키지를 삭제하고 다시 설치해줬다.
pip uninstall attrs
pip install attrs
3. 결과
- 파이썬에서 attrs 패키지가 정상적으로 로드되고, 원래 실행하려던 패키지도 에러 없이 작동했다.
반응형
'Programming' 카테고리의 다른 글
python에서 SSL verification 제외하는 방법 (0) | 2023.01.30 |
---|---|
[python] Graphviz error_No such file or directory 'dot' 해결 (0) | 2023.01.18 |
python tqdm 상태바가 새 줄(new line)에 출력되는 현상이 반복될 때 (0) | 2023.01.05 |
sagemake studio lab, pytorch로 tensorboard 열기 (0) | 2022.12.01 |
Anaconda, python packages 환경 복제하기(개발환경 복붙) (0) | 2022.12.01 |