텐서플로우 설치 (gpu 가 더 좋지만 그냥 cpu 버전으로 설치했습니다)
pip install tesnorflow-cpu==파이썬 버전
ex)pip install tensorflow-cpu==2.7.4
텐서플로우 패키지 목록확인
conda list
패키지목록 파일로 저장
pip freeze > requirements.txt
#주피터 노트북사용시
!pip freeze > requirements.txt
텐서플로우 버전확인 (파이썬 코드로 작성해야함)
import tensorflow as tf
print(tf.__version__)