본문 바로가기

Programming/Python

[파이썬] PyYAML install error

반응형

ERROR: Cannot uninstall 'PyYAML'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

github 에서 README 대로 설치하다가 위와 같은 에러문제가 발생하는 경우가 있다.

PyYAML 버전을 업그레이드 할 때 해당 라이브러리를 지우고 다시 설치하는데 문제가 있어 명령을 멈춘것으로 보인다.

이 때 이 에러를 무시하고 그냥 PyYAML 을 따로 먼저 재설치하고 기존 README 를 따라가면 문제가 해결되기도 한다.

 

PyYAML 에러를 무시하고 install 하는 명령어는 다음과 같다.

 

pip install --ignore-installed PyYAML
반응형