딥러닝 라이브러리 중 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의 설치가 작동되는 것을 확인할 수 있다.