Hello,
I installed Jetpack 3.2.1 under Ubuntu 16.04
The installation ended without any problems.
I chose to install only the CUDA toolkit.
Is there any script I should run upon installation completion ?
It seems that nvcc was not added to the path.
Thank you,
Zvika
Check “/usr/local/cuda*”. To see your default path use “echo $PATH”. If you wanted to add something like “/usr/local/cuda-9.0/bin” to your default path you could do this for a single session on command line like this:
export PATH="${PATH}:/usr/local/cuda-9.0/bin"
The same thing could be added at the end of your “~/.bashrc” file to have this stick around and show up at the next login.
1 Like