IT3 Windows에서 TensorFlow GPU를 사용할 수 있는 Jupyter Lab 환경 구성하기 Jupyter Notebook보다 편리하게 작업할 수 있도록 Jupyter Lab 환경을 만들 것이다. https://shrimpfajita.tistory.com/9 위 글에서 Docker Desktop 설치까지 진행한 다음 아래 과정을 진행한다. 도커파일 작성하기 작업할 경로에서 아래 세 파일을 작성한다. "tf"는 임의로 지정한 directory 명으로, 다른 이름으로 지정해도 무관하다. Dockerfile FROM tensorflow/tensorflow:latest-gpu WORKDIR /tf COPY requirements.txt . RUN pip install --upgrade pip RUN pip install --upgrade -r requirements.txt EXPOSE 8888 ENTR.. 2023. 4. 18. Windows에 TensorFlow2 GPU 설치하기 (Docker, WSL2 이용) 1. NVIDIA driver 설치하기 Download the latest official NVIDIA drivers Download the latest official NVIDIA drivers www.nvidia.com 그래픽카드에 맞는 드라이버를 선택해서 다운로드 후 설치해 준다. 2. WSL 설치하기 Windows10에 WSL 설치하기 1. Windows 버전 확인 WSL(Windows Subsystem for Linux, Linux용 Windows 하위 시스템)을 설치하려면 Windows 10 버전 2004 이상 (빌드 19041 이상) 또는 Windows 11 이상이어야 한다. Windows10의 경우 Windows + R 을 눌러서 winv shrimpfajita.tistory.com lin.. 2023. 4. 17. Windows10에 WSL 설치하기 1. Windows 버전 확인 WSL(Windows Subsystem for Linux, Linux용 Windows 하위 시스템)을 설치하려면 Windows 10 버전 2004 이상 (빌드 19041 이상) 또는 Windows 11 이상이어야 한다. Windows10의 경우 Windows + R 을 눌러서 winver 를 실행하면 버전을 확인할 수 있다. 2. Linux 커널 업데이트 패키지 다운로드 https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi x64 머신용 최신 WSL2 Linux 커널 업데이트 패키지를 다운로드 후 더블클릭 해서 설치해준다. 3. Windows에 Linux 설치 Windows PowerShell을 마.. 2023. 4. 16. 이전 1 다음