pbj0812의 코딩 일기

[TensorFlow] 2.0 설치시 발생한 distutils 에러 해결 본문

인공지능 & 머신러닝/TensorFlow

[TensorFlow] 2.0 설치시 발생한 distutils 에러 해결

pbj0812 2019. 9. 13. 01:26

1. 사용 명령어

pip install tensorflow==2.0.0-beta0 

 

2. 오류 내용

 - 아래 내용처럼 나옴

 - 어떤 것을 지우고 깔아야 하는지 모른다는 내용이라는 거 같음

Can't uninstall ~. It is a distutils installed project ~..

 

3. 해결 방안

 - 아래 명령어를 입력하면 에러 무시하고 깐다는 내용

pip install --ignore-installed tensorflow==2.0.0-beta0 

 

4. 결과

 

 - 이런 식으로 경고 메시지가 나오지만 깔림(위의 경고는 numpy 버전 관련 경고로 보임)

 - 버전 확인

 

5. 참고문헌

 - https://github.com/blockstack/blockstack-core/issues/504

 

'Uninstalling a distutils installed project' error when installing blockstack · Issue #504 · blockstack/blockstack-core

I am on macOS Sierra: 10.12.5, running Python 2.7. Had some issues installing in OSX, and ended up finding this was the issue (when running sudo pip install blockstack --upgrade): DEPRECATION: Unin...

github.com

 

 

Comments