Installing
-
5. Installing
Finally, Install CUDA Toolkit in Kubuntu
To search for the Available releases:sudo apt search cuda-10
Then for instance, to Install CUDA 10.1:
sudo apt -y install cuda-10-1
Or at this time simply:
sudo apt -y install cuda
Again Setup PATH Env Variable.
This is necessary to Find the Binaries on System:echo 'export PATH=/usr/local/cuda-10.0/bin${PATH:+:${PATH}}' > $HOME/.bashrc
Possibly Amend the 10.0 with the Actual Version…
And Reload Configuration simply with:bash
Contents