Skip to content

Instantly share code, notes, and snippets.

@moracabanas
Last active December 11, 2023 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moracabanas/63070d9012ad4b95e86a4004caac5a9d to your computer and use it in GitHub Desktop.
Save moracabanas/63070d9012ad4b95e86a4004caac5a9d to your computer and use it in GitHub Desktop.
Install CUDA for WSL2 Ubuntu (this makes sure you wont get new CUDA drivers as you need the included ones from Windows beta driver)
#!/bin/bash
sudo apt-key del 7fa2af80 -y
wget https://developer.download.nvidia.com/compute/cuda/repos/wsl-ubuntu/x86_64/cuda-wsl-ubuntu.pin
sudo mv cuda-wsl-ubuntu.pin /etc/apt/preferences.d/cuda-repository-pin-600
wget https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda-repo-wsl-ubuntu-12-2-local_12.2.0-1_amd64.deb
sudo dpkg -i cuda-repo-wsl-ubuntu-12-2-local_12.2.0-1_amd64.deb
sudo cp /var/cuda-repo-wsl-ubuntu-12-2-local/cuda-*-keyring.gpg /usr/share/keyrings/
sudo apt-get update
sudo apt-get -y install cuda-toolkit-12-2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment