Missing NVCC

I installed the cuda package as per the documentation but I still do not have the NVCC compiler…

3.7. L4T

  1. Perform the pre-installation actions.
  2. Install repository meta-data
    $ sudo dpkg -i cuda-repo-.deb
  3. Update the Apt repository cache
    $ sudo apt-get update
  4. Install CUDA Toolkit
    $ sudo apt-get install cuda-toolkit-6-0
  5. Add the user to the video group
    $ sudo usermod -a -G video
  6. Perform the post-installation actions.

I apologize I solved this issue myself:

echo “# Add CUDA bin & library paths:” >> ~/.bashrc
echo “export PATH=/usr/local/cuda-6.0/bin:$PATH” >> ~/.bashrc
echo “export LD_LIBRARY_PATH=/usr/local/cuda-6.0/lib:$LD_LIBRARY_PATH” >> ~/.bashrc
source ~/.bashrc