3

I 'm trying to install latest nvidia drivers (352) but it doesn't work. I tryed following:

sudo add-apt-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get install nvidia-352

When I tipe the last command I get

Reading package lists... Done
Building dependency tree 
Reading state information... Done
Unable to locate package nvidia-352

What I'm doing wrong? Why xorg edgers doesn't work

Josip Pavić
  • 91
  • 1
  • 7

1 Answers1

2
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-352

And it also makes sense to remove xorg-edgers

sudo add-apt-repository -r ppa:xorg-edgers/ppa
Pilot6
  • 90,100
  • 91
  • 213
  • 324
  • Is it better to recommend removing the PPA with ppa-purge instead of add-apt-repository -r which seems to remove the package source file only? – Kalle Richter Aug 02 '18 at 21:55