Languages/python

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 명령어를 삽입하자 구동이 되었다. 위 에러 문구를 읽어보면 Consider using the --user option 이라고 되어 있는데 그게 그 말이었던 듯... 

python3 -m pip install --user requests

https://github.com/googlesamples/assistant-sdk-python/issues/236

 

[Errno 13] Permission denied How i solve this problem · Issue #236 · googlesamples/assistant-sdk-python

I try to install google assistant on raspberry PI 3 by this code python -m pip install google-assistant-sdk[samples] and then it is show Could not install packages due to an EnvironmentError: [Errn...

github.com

 

728x90
반응형

'Languages > python' 카테고리의 다른 글

데이터 수집 방법 참고페이지  (0) 2022.10.30