Computer Science/에러 기록 정리

[boto3]ImportError: No module named boto3

JG Ahn 2019. 11. 12. 21:00

Error

ImportError: No module named boto3

 

Situation

pip install boto3를 하여 boto3를 깔았는데 

계속해서 boto3를 찾을수없다는 에러가 뜬다

 

Solution

생각해보니 나는 python [filename]으로 실행을 시켰다

python 명령으로 .py 파일을 실행시키면 python 2.x로 실행이 된다

 

따라서 python3 명령으로 파일을 실행시켜주면 된다.

python3 [filename]