InstallError : TensorFlow-GPU

Rowan·2023년 3월 4일
0
post-thumbnail

딥러닝 라이브러리 중 TensorFlow 설치 간 TensorFlow-GPU의 'wrapt' 에러로 설치가 되지 않는 경우를 마주함.
기존에 설치되어있는 tensorflow 버전과 python 버전이 호환되지 않는 경우 wrapt 패키지와 충돌하여 생기는 오류였음


에러 내용
ERROR: Cannot uninstall 'wrapt'. 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.


해결 방안

pip install wrapt --upgrade --ignore-installed
pip install tensorflow-gpu

기존에 설치된 wrapt 패키지를 무시하고 업그레이드 하겠다는 내용으로,

이후 정상적으로 tensorflow-gpu의 설치가 작동되는 것을 확인할 수 있다.





참고
https://stackoverflow.com/questions/59232286/error-cannot-uninstall-wrapt-when-installing-tensorflow-gpu-1-14

profile
Traceback

0개의 댓글