가상 환경을 만들어주고 (버전이랑 패키지 관리 가능하기 때문) 가상 환경을 activate 해준다. python3 -m venv ./study_tensorflow source study_tensorflow/bin/activate 그리고 tensorflow를 설치해 준다. pip install nvidia-cudnn-cu11==8.6.0.163 tensorflow==2.13.* 또는 # Requires the latest pip pip install --upgrade pip # Current stable release for CPU and GPU pip install tensorflow # Or try the preview build (unstable) pip install tf-nightly 그리고 나는..