작심삼일

[PyYAML 에러] ERROR: Cannot uninstall 'PyYAML'. 본문

정리/잡 에러들

[PyYAML 에러] ERROR: Cannot uninstall 'PyYAML'.

yun_s 2022. 8. 17. 09:12
728x90
반응형

에러

단순히 pip -r requirements.txt를 실행시켰는데 이런 에러가 나온다.

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.

PyYAML을 삭제 후 다른 버전으로 재설치할 때 생기는 오류다.


해결방법

PyYAML을 무시하고 PyYAML을 재설치한 뒤, 다시 다른 것들을 설치하면 해결된다.

pip install --ignore-installed PyYAML

물론 이 방법이 찜찜할 것이다.

하지만 더 좋은 방법을 아직 찾지 못했다.....

728x90
반응형
Comments