반응형
Python으로 YOLO 모델을 구현하려고 google.colab 라이브러리를 설치하려고 하니, subprocess-exited-with-error 에러가 발생했다.
목차
1. 문제 상황
2. 해결 방법
1. 문제 상황
아래의 명령어를 사용하여 google.colab 라이브러리를 설치하려고 했다.
pip install google.colab
'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after version specifier) pytz >= 2011k
2. 해결 방법
아래와 같이 명령어를 사용하면 된다라고 가이드가 나온다.
pip install --use-pep517 google.colab
********************************************************************************
Requirements should be satisfied by a PEP 517 installer.
If you are using pip, you can try `pip install --use-pep517`.
********************************************************************************
위와 같이, pip를 통해 install을 할 때, --use-pep517을 넣어서 진행하니 해결은 됐다.
이 문제를 해도 되지 않는다면 colab과 python 버전 체크를 해야할 수도 있다.
반응형
최근댓글