열정, 근면, 성장
requirements.txt에 적힌 패키지 버전이 없을 때 본문
Could not find a version that satisfies the requirement <package name==version>
과 같은 에러가 떴을 때
vim requirements.txt
requirements.txt에 들어가서
INSERT 모드로 진입한 후, 해당 패키지의 버전을 지우고 패키지 이름만 남기면 된다.
ex) anaconda-client==1.9.0 이었다면
anaconda-client 만
그 후 다시 pip install -r requirements.txt 해보고 또 이런 에러나면 반복 작업하는 식으로 해결했다.
'코딩 > 디버깅' 카테고리의 다른 글
가상환경 uwsgi와 전역 uwsgi 관련 에러 (0) | 2023.05.09 |
---|---|
uWSGI Failed with result 'protocol' 에러 해결 (0) | 2023.04.16 |
Comments