Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 리눅스
- Google Analytics
- Tistory
- Ga
- 파이썬
- Visualization
- 월간결산
- Python
- 딥러닝
- 블로그
- tensorflow
- 독후감
- MATLAB
- SQL
- Blog
- python visualization
- 서평단
- 서평
- 파이썬 시각화
- 매틀랩
- 한빛미디어
- 시각화
- 텐서플로
- 티스토리
- matplotlib
- MySQL
- Linux
- Pandas
- 통계학
- 한빛미디어서평단
Archives
- Today
- Total
pbj0812의 코딩 일기
[TensorFlow] 2.0 설치시 발생한 distutils 에러 해결 본문
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
'인공지능 & 머신러닝 > TensorFlow' 카테고리의 다른 글
[TensorFlow] Sequences, Time Series and Prediction (coursera) (0) | 2020.04.03 |
---|---|
[TensorFlow] Natural Language Processing in TensorFlow (0) | 2020.04.01 |
[TensorFlow] Convolutional Neural Networks in TensorFlow (Coursera) (2) | 2020.03.31 |
[TensorFlow] Introduction to TensorFlow...(Coursera) (0) | 2020.03.29 |
[TensorFlow] 01 tutorial_Basic_Classification (1) | 2019.07.11 |
Comments