반응형
python.exe -m pip install --upgrade pip # 오류 발생
pip upgrade? update? 하면서 발생하는 오류
아래 방법대로 하니까 해결되었다.
Uninstall SetupTools:
python -m pip uninstall pip setuptools
Upgrade PIP:
pip3 install --upgrade pip
Reinstall Setuptools:
pip install --upgrade setuptools
반응형
'기타' 카테고리의 다른 글
반응형
python.exe -m pip install --upgrade pip # 오류 발생
pip upgrade? update? 하면서 발생하는 오류
아래 방법대로 하니까 해결되었다.
Uninstall SetupTools:
python -m pip uninstall pip setuptools
Upgrade PIP:
pip3 install --upgrade pip
Reinstall Setuptools:
pip install --upgrade setuptools
반응형