에러 해결
[에러 해결] ModuleNotFoundError: No module named 'botocore.vendored'
체봄
2021. 10. 13. 20:13
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
반응형