방법 1. 윈도우에 바로 설치 -> 역시 윈도우는 잘 안됬다.
출처: https://thegeeksdiary.com/2021/10/07/how-to-setup-tensorflow-with-gpu-support-in-windows-11/
How To: Setup Tensorflow With GPU Support in Windows 11
It’s been just 2 days since Windows 11 came out and I am already setting up my system for the ultimate machine learning environment. Today we are going to setup a new anaconda environment wit…
thegeeksdiary.com
1. GeForce 그래픽 드라이버 설치
2. Visual Studio 2019 설치 및 C++ 개발도구 설치
3. CUDA 설치
C:\Users\gudtj\AppData\Local\Temp\cuda
4. cuDnn 설치
환경 변수 중 사용자 변수와 시스템 변수간의 차이
잘 되지 않음.
이 분 껄로 시도해볼 예정이다.
https://www.youtube.com/watch?v=xQVOaTUm9lM
방법 2. Docker를 이용한 설치 방법 -> 놀라울만큼 쉽게 GPU 작동이 가능하다.
https://thegeeksdiary.com/2023/01/29/how-to-setup-tensorflow-with-gpu-support-using-docker/
도커 내 파일을 밖으로 내보내는 방법
https://itholic.github.io/docker-copy/
[Docker] 도커 파일 복사 (로컬 <-> 컨테이너)
도커 파일 복사
itholic.github.io
How To: Setup Tensorflow With GPU Support using Docker
Previously I published a guide for setting up tensorflow in an anconda environment with GPU support. A lot of people liked it and I have been working with this environment myself for more than a ye…
thegeeksdiary.com
https://medium.com/@KNuggies/tensorflow-with-gpu-on-windows-with-wsl-and-docker-75fb2edd571f
Tensorflow with GPU on Windows with WSL and Docker
In this short article we’ll be setting up a desktop environment to run Tensorflow on Windows 10/11 using WSL2 Ubuntu and Docker Desktop for…
medium.com
FROM tensorflow/tensorflow:latest-gpu
WORKDIR /tf-knugs # This specifies the directory to work
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN pip install --upgrade -r requirements.txt
EXPOSE 8888
ENTRYPOINT ["jupyter", "lab","--ip=0.0.0.0","--allow-root","--no-browser"]