-
Install the latest NVidia driver for your graphics card.
-
Run this command in PowerShell (run as administrator):
wsl --install
-
The rest of the document is inside the WSL Linux (e.g. Ubunu)
-
https://www.anaconda.com/docs/getting-started/miniconda/install#linux-2
-
mkdir -p ~/miniconda3 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 rm ~/miniconda3/miniconda.sh
conda create -n <env_name> python=3.12
conda activate <env_name>-
pip install --upgrade keras
python3 -m pip install tensorflow[and-cuda]- Test GPU Support
python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu129pip install -U "jax[cuda12]"conda activate <env_name>
pip install jupyter
jupyter-lab --no-browser