requestmodule
ModuleNotFoundError
requests 모듈을 import하려고 했으나 아래와 같이 모듈낫파운드에러가 떴다. ModuleNotFoundError: No module named 'requests' 구글링을 조금 해보니 아래와 같은 명령어를 입력하면 된다고 했지만 인스톨 에러 남. python3 -m pip install requests >> 에러 내용 >> ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: 'RECORD' Consider using the `--user` option or check the permissions. 더 구글링을 해보니 --user 명령어를 삽입하자 구동이 되었다. 위 에러 문구를 읽어보..