목차
반응형
설치 가능 환경¶
TensorFlow는 다음 64비트 시스템에서 테스트 및 지원됩니다.
- Python 3.5~3.8
- Ubuntu 16.04 이상
- Windows 7 이상(C++ 재배포 가능 패키지)
- macOS 10.12.6(Sierra) 이상(GPU 지원 없음)
- Raspbian 9.0 이상
PIP에서 제공하는 버전¶
Requires the latest pip
- pip install --upgrade pip
Current stable release for CPU and GPU
- pip install tensorflow
- pip install tensorflow-gpu==2.4.0 (추천)
Or try the preview build (unstable)
- pip install tf-nightly
최신 버전으로 업데이트¶
- pip install --upgrade tensorflow
버전 확인¶
In [1]:
import tensorflow as tf
tf.__version__
Out[1]:
'2.4.0'
Gpu 사용 확인¶
In [3]:
from tensorflow.python.client import device_lib
device_lib.list_local_devices()
Out[3]:
[name: "/device:CPU:0"
device_type: "CPU"
memory_limit: 268435456
locality {
}
incarnation: 14745450316513519152]
Jupyter notebook에 커널 추가¶
파이커널 설치
- pip install ipykernel
커널 추가
- python -m ipykernel install —- user -- name 가상환경이름
커널 삭제
- jupyter kernelspec uninstall 가상환경이름
반응형
'Deep Learning > Tensorflow' 카테고리의 다른 글
Tensorflow에 데이터 올리기 (list, numpy, tensor) (0) | 2021.05.01 |
---|