Last active
September 9, 2021 03:10
-
-
Save WesleyCh3n/f2670e43bb825179004b778bce715fdf to your computer and use it in GitHub Desktop.
CUDA 11.2.2 insallation in Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600 | |
wget https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda-repo-ubuntu1804-11-2-local_11.2.2-460.32.03-1_amd64.deb | |
sudo dpkg -i cuda-repo-ubuntu1804-11-2-local_11.2.2-460.32.03-1_amd64.deb | |
sudo apt-key add /var/cuda-repo-ubuntu1804-11-2-local/7fa2af80.pub | |
sudo apt-get update | |
sudo apt-get -y install cuda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment