boto3
를 pip install boto3
로 설치하다가 다음과 같은 에러가 났다.
ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: 'c:\\python39\\Scripts\\jp.py'
Consider using the `--user` option or check the permissions.
에러 메시지에 나와있는 대로 --user
를 추가해주면 된다.
pip install --user boto3
잘 설치가 되는 모습을 확인할 수 있다.