Skip to content

Commit 9b0e2fe

Browse files
committed
Notes
1 parent 52724f1 commit 9b0e2fe

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

devops/install/dotnet-install-arm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ bold="\e[1m"
55
underline="\e[1;4m"
66
reset="\e[0m"
77

8-
echo -e "${bold}.NET 7 Installer${reset}"
8+
echo -e "${bold}.NET 9 Installer${reset}"
99
echo -e "${bold}Pete Codes / PJG Creations 2021${reset}"
1010
echo -e "${bold}CodeProject.AI edition${reset}" # Drastically trimming output / SDK is optional
1111

docs/WSL-README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,19 @@ exit
132132
```
133133

134134
Your WSL virtual hard drive should be smaller and the space that was used
135-
reclaimed by Windows.
135+
reclaimed by Windows.
136+
137+
## GPU Support under WSL
138+
139+
Please read [NVIDIAs guide](https://docs.nvidia.com/cuda/wsl-user-guide/index.html#step-1-install-nvidia-driver-for-gpu-support). The main points are:
140+
141+
1. **DO NOT install NVIDIA drivers within WSL**. The Windows drivers will work under WSL, so installing drivers *inside* WSL will overwrite the Windows drivers and lead to issues
142+
143+
2. **DO install the NVIDIA toolkit separately in WSL**. Head to the [toolkit download page](https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=WSL-Ubuntu&target_version=2.0&target_type=deb_network) to find the correct instructions. For Windows 11 on CUDA 12.6, for example, the instructions are
144+
145+
``` bash
146+
wget https://developer.download.nvidia.com/compute/cuda/repos/wsl-ubuntu/x86_64/cuda-keyring_1.1-1_all.deb
147+
sudo dpkg -i cuda-keyring_1.1-1_all.deb
148+
sudo apt-get update
149+
sudo apt-get -y install cuda-toolkit-12-6
150+
```

0 commit comments

Comments
 (0)