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 | 31 |
Tags
- 독후감
- 한빛미디어서평단
- tensorflow
- MySQL
- MATLAB
- 리눅스
- Blog
- Tistory
- 딥러닝
- Visualization
- 파이썬
- 시각화
- 매틀랩
- 한빛미디어
- 텐서플로
- Python
- 티스토리
- 월간결산
- 서평
- 서평단
- Pandas
- matplotlib
- 파이썬 시각화
- Google Analytics
- 블로그
- 통계학
- python visualization
- Ga
- Linux
- SQL
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
'인공지능 & 머신러닝 > 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