[ 작업 환경 ]
python3.6
Centos7
pip 20.1.1
[ 문제 상황 ]
ERROR: google-auth 1.19.2 has requirement setuptools>=40.3.0, but you'll have setuptools 39.2.0 which is incompatible.
[ 문제 원인 ]
google-auth 1.19.2 에서는 setuptools 버전 40.4.0 이상을 필요로 하는데, 해당 필요조건을 충족시키지 못하는 setuptools 39.2.0 버전이 설치되어있다고 알려주는 문구입니다.
[ 해결 방법 ]
설치된 setuptools 버전을 올려주면 됩니다.
pip install --upgrade pip setuptools
필자의 경우, 39.2.0 에서 49.2.0 버전으로 올려졌습니다.
'Development > Python' 카테고리의 다른 글
[Solved][Python] UnboundLocalError: local variable '' referenced before assignment (0) | 2020.07.24 |
---|---|
[Solved][Python] ModuleNotFoundError: No module named 'firebase_admin' (0) | 2020.07.23 |
[Python] 여러 줄 입력을 소스 한줄로 받아 리스트화하기 (0) | 2020.07.22 |
[Python] 정규표현식 표현법 - 기초 (0) | 2020.07.15 |
[Python][라이브러리] threading 활용 기초 예시 (0) | 2020.07.15 |