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
- Xeon #E5-2680
- 다이슨 #배터리
- VMware #Shared Folder
- VirtualBox #VMware
- Callaway #Mavrik #Epic Flash
- macro lens #EF #FD
- Octave #homebrew #macOS
- cycloidal #rv reducer
- Laptop #CPUID
- ESP32 #Arduino
- 매크로렌즈 #리버스링
- Linux #VirtualBox
- VNC #Firewall #CenOS7 #VMware
- 피코프레소 #ITOP40
- egpu #aorus gaming box #gtx1070 #tb3
- x99 itx/ac
- Oh My Zsh #macOS
- Arduino #Wall Plotter
- Arduino #PlatformIO #macOS
- Java #MacBook #macOS
- fat32 #rufus
- razer #deathadder #viper #g102
- centos7 #yum update #/boot
- k6 #피코프레소
- XTU #Virtual Machine System
- TensorFlow #Python #pip
- Tarantula #3D 프린터
- Dell #Latitude #BIOS
- ITOP40
- CM-EF-NEX
Archives
- Today
- Total
얕고 넓게
[AI] TensorFlow 설정 @CentOS7 본문
2022.08.09
0. Ref
https://jjeongil.tistory.com/1576
CentOS 7 : TensorFlow 설치 방법, 예제, 명령어
텐서플로(TensorFlow)는 구글이 개발한 머신러닝 모델을 구축하기 위한 자유-오픈 소스 플랫폼이다. 트위터, 페이팔, 인텔, 레노버, 에어버스 등 수많은 기관에서 사용하고 있다. 이 튜토리얼에서는
jjeongil.tistory.com
1. Python 설치, PIP설치
https://jjeongil.tistory.com/1279
CentOS 7 : pip 설치하는 방법, 예제, 명령어
Pip은 Python Package Index(Python Package Index)와 같이 Python에서 작성된 소프트웨어 패키지의 설치 및 관리를 단순화하는 패키지 관리 시스템입니다. Pip은 CentOS 7에 기본적으로 설치되지 않습니다. 하지.
jjeongil.tistory.com
yum install python
yum install epel-release
yum install pythone-pip
2. TensorFlow 설치
pip install --upgrade tensorflow
=> Error!
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-SHKkc4/pip/ You are using pip version 8.1.2, however version 22.2.2 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
???
python -m pip install --upgrade pip
pip install --upgrade pip --trusted-host pypi.org --trusted-host files.pythonhosted.org
pip2 install pip --upgrade force
pip install pip==22.2.2
pip install --upgrade pip==22.2.2
모두 실패
yum install python3
pip3 install --upgrade pip
pip3 install --upgrade tensorflow
* Python3로만 설치가능한 듯?
'IT > AI.ML' 카테고리의 다른 글
[AI] NLP 용어 정리 (0) | 2025.01.24 |
---|---|
[AI] Llama 파인튜닝 재도전 (0) | 2025.01.23 |
[AI] Llama 버전 비교 (0) | 2025.01.19 |
[AI] Llama 파인 튜닝 (0) | 2025.01.17 |
[AI] Ollama 설치 @Window11 (0) | 2025.01.13 |