TensorFlow의 설치(23.06.14 기준)
공식 문서를 기준으로 작성하였다.
지원 버전
- Python 3.6 ~ 3.9
- Ubuntu 16.04 이상 - Windows 7 이상 - macOS 10.12.6 이상(GPU 지원 X)
설치과정(GPU를 이용하지 않을 경우)
pip install --upgrade pip
python3 -m pip install tensorflow
# Verify install:
python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
설치버전 확인
python3
import tensorflow as tf
tf.__version__
728x90
'Learning Space > Machine Learning, Deep Learning' 카테고리의 다른 글
[Machine Learning] TensorFlow를 시작하며 (0) | 2023.06.14 |
---|---|
KNN(K-Nearest Neighbor) (0) | 2023.01.02 |
머신러닝의 이해 (0) | 2023.01.01 |
환경 설정 (0) | 2023.01.01 |
Linear Models for Regression(선형회귀 모델) (0) | 2022.12.21 |