Installing
-
5. Installing
Finally, Install CUDA Toolkit in Kubuntu
To search for the Available releases:sudo apt search cuda
Then to Install the Latest CUDA simply:
sudo apt 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