[Python] Command "python setup.py egg_info" failed with error code 1 해결법

환길·2024년 4월 11일

Error

목록 보기
3/13
post-thumbnail

오류


pip install <Library>

다음과 같이 라이브러리를 설치할 때
Command "python setup.py egg_info" failed with error code 1

이러한 오류가 발생합니다.


해결법


pip install --upgrade --ignore-installed pip setuptools 

다음과 같이 입력합니다.

pip install <Library>

Library가 정상적으로 설치됩니다.

0개의 댓글