Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
| #### MATPLOTLIBRC FORMAT | |
| ## This is a sample matplotlib configuration file - you can find a copy | |
| ## of it on your system in | |
| ## site-packages/matplotlib/mpl-data/matplotlibrc. If you edit it | |
| ## there, please note that it will be overwritten in your next install. | |
| ## If you want to keep a permanent local copy that will not be | |
| ## overwritten, place it in the following location: | |
| ## unix/linux: | |
| ## $HOME/.config/matplotlib/matplotlibrc or |
Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
| # Remove anything linked to nvidia | |
| sudo apt-get remove --purge nvidia* | |
| sudo apt-get autoremove | |
| # Search for your driver | |
| apt search nvidia | |
| # Select one driver (the last one is a decent choice) | |
| sudo apt install nvidia-370 |