티스토리 뷰
ModuleNotFoundError: No module named 'botocore.vendored'
AWS S3 관련 커맨드를 잘 사용하던 중, 갑자기 위와 같은 에러가 떴다.
어떤 모델을 사용하기 위해 이것저것 설치했었는데, 구글링해보니 botocore가 $ apt install python3-botocore 와 $ pip3 install botocore 두 가지 방법으로 중복 설치되서 그런 듯 했다.
해결 방법) 필요 없는 명령어가 있을 수 있지만, 나는 다음 순서로 실행해 해결했다.
$ sudo apt remove python3-botocore
$ pip3 uninstall botocore
$ sudo apt install python3-botocore
$ sudo apt install awscli
$ aws configure
$ pip install --upgrade boto3 awscli
반응형
'에러 해결' 카테고리의 다른 글
[에러 해결] 'import faiss' 시 'ImportError: DLL load failed' 에러 해결 (0) | 2022.04.28 |
---|---|
Windows 비밀번호가 일치하지 않는다며 로그인이 안되는 문제 해결 (0) | 2022.04.22 |
[에러 해결] ERROR: torch has an invalid wheel, .dist-info directory not found (0) | 2021.08.19 |
[에러해결] AttributeError: module 'tensorflow' has no attribute 'Session' (0) | 2021.05.09 |
[에러해결] 'predict_proba is not available when probability=False' (0) | 2021.04.29 |
댓글