[ TensorFlow ] Visual Studio Code TensorFlow 설치 및 실행

[ TensorFlow ] Visual Studio Code TensorFlow 설치 및 실행



1. 파이썬 버전 확인

    $ python3 -V



2. pip 설치

    $ sudo apt-get install python3-pip



3. TensorFlow 설치

    $ pip install tensorflow



4. TensorFlow 버전 확인 및 실행

import tensorflow as tf

print(tf.__version__)



5. 경고 메세지

    - 2021-11-25 00:36:36.202279: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] 동적 라이브러리 'libcudart.so.11.0'을 로드할 수 없습니다. dlerror: libcudart.so.11.0: 공유 개체 파일을 열 수 없습니다: 해당 파일이나 디렉터리가 없습니다.
2021-11-25 00:36:36.202304: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] 컴퓨터에 GPU가 설정되어 있지 않으면 위의 cudart dlerror를 무시하십시오.



※ 텐서 플로우 시스템 요구사항

  • Python 3.6–3.9
  • Python 3.9 지원에는 TensorFlow 2.5 이상이 필요합니다.
  • Python 3.8 지원에는 TensorFlow 2.2 이상이 필요합니다.
  • pip 19.0 이상(manylinux2010 지원 필요)
  • Ubuntu 16.04 이상(64비트)
  • macOS 10.12.6(Sierra) 이상(64비트)(GPU 지원 없음)
  • macOS에는 pip 20.3 이상이 필요합니다.
  • Windows 7 이상(64비트)
  • Visual Studio 2015, 2017 및 2019용 Microsoft Visual C++ 재배포 가능 패키지
  • GPU 지원에는 CUDA® 지원 카드 필요(Ubuntu 및 Windows)


댓글