Development/Python
[Solved][Python3.6] ERROR: google-auth 1.19.2 has requirement setuptools>=40.3.0, but you'll have setuptools 39.2.0 which is incompatible.
Best Junior
2020. 7. 23. 14:15
[ 작업 환경 ]
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 버전으로 올려졌습니다.