Last active
January 4, 2019 04:28
-
-
Save choiseoungho/56c148b2b79ac68fc1ad84cb545b180a to your computer and use it in GitHub Desktop.
Ubutu 18.04 nvidia graphic card install methods
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
cat /proc/driver/nvidia/version | |
lspci -k | |
$ sudo add-apt-repository ppa:graphics-drivers/ppa | |
$ sudo apt update | |
$ sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub | |
$ sudo sh -c 'echo "deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 /" >> /etc/apt/sources.list.d/cuda.list' | |
$ sudo sh -c 'echo "deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 /" >> /etc/apt/sources.list.d/cuda.list' | |
$ sudo apt-get update | |
$ sudo apt-get install nvidia-415 | |
$ sudo apt-get install dkms nvidia-modprobe | |
$ nvidia-smi | |
references | |
[1] https://hiseon.me/2018/02/17/install_nvidia_driver/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment