Installing
-
3. Setting Up CUDA Repository
See How Setup CUDA Ubuntu Repo Package
-
4. Installing CUDA
Finally, to Install CUDA Toolkit in Ubuntu
Execute:sudo apt -y install cuda
-
5. Setting up PATH
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