https://nuggy875.tistory.com/44?category=867863
Ubuntu 장착된 그래픽카드 확인 명령어
$ nvidia-smi --query | fgrep 'Product Name' 혹은 $ lspci | grep -i VGA
nuggy875.tistory.com
https://jjeongil.tistory.com/1157
Ubuntu 18.04 : TensorFlow 설치 방법, 예제, 명령어
TensorFlow는 구글이 구축한 머신 러닝을 위한 자유-오픈 소스 플랫폼입니다. 그것은 Twitter, PayPal, Intel, Lenovo, Airbus를 포함한 많은 조직에서 사용됩니다. TensorFlow는 Python 가상 환경, Docker 컨테이..
jjeongil.tistory.com
1. 환경 확인
그래픽 카드 : NVIDIA Corporation TU102 [GeForce RTX 2080 Ti] (rev a1)
lsb_release -a
Description: Ubuntu 20.04.3 LTS
파이썬 : python 3.8.10
2. 가상환경 접속 + pip upgrade
pip install --upgrade pip
3. tensorflow 다운로드
pip install --upgrade tensorflow
다운로드 확인
python -c 'import tensorflow as tf; print(tf.__version__)'
tensorflow 2.9.1 설치 완료
'Face recognition' 카테고리의 다른 글
| [Error]error: legacy-install-failure (scipy) (0) | 2022.06.28 |
|---|---|
| [파이썬 가상환경] FaceNet (0) | 2022.06.15 |
| [환경설정]Nvidia driver & CUDA & CuDNN (0) | 2022.06.13 |
| FaceNet (0) | 2022.06.10 |
| [설치]Anaconda, spyder (0) | 2022.06.09 |