I am trying to install the drivers for my Graphic Card NVIDIA GeForce GTX 1050Ti
To see the recommended drivers I am using the command:
ubuntu-drivers devices
But the command does not display anything
I am trying to install the drivers for my Graphic Card NVIDIA GeForce GTX 1050Ti
To see the recommended drivers I am using the command:
ubuntu-drivers devices
But the command does not display anything
I had the same problem. Software & Updates > Ubuntu software > check 'Proprietary drivers for devices' option. Then update from gui or sudo apt update
sudo apt install nvidia-driver-455
to update via CLI, but still. had no luck. I had to revert to dual booting to Ubuntu.
– ShermanL
Dec 22 '20 at 02:32
This is an old question, but the most likely cause is that you don't have the restricted repository enabled in your /etc/apt/sources.list. All the proprietary drivers are there.
sudo ubuntu-drivers autoinstall
– Novice May 14 '19 at 06:11sudo ubuntu-drivers autoinstall
: No drivers found for automatic installation. – Nau May 14 '19 at 06:33sudo apt update
? – May 14 '19 at 07:17sudo apt install nvidia-driver-440
.If not , download the recommended 440 driver for your GPU here the run the following commands :chmod +x NVIDIA-Linux-x86_64-440.100.run ; sudo ./NVIDIA-Linux-x86_64-440.100.run
– Parsa Mousavi Jul 08 '20 at 07:07