IT/AI.ML
[AI] TensorFlow 설정 @CentOS7
블랙오닉스
2022. 8. 9. 23:55
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로만 설치가능한 듯?