Nvcc -v Fatal error

C:\Users\Kaise>nvcc -v
nvcc fatal : No input files specified; use option --help for more information
I show that everything is installed I am not trying to run a program I am just wondering when I go into cmd this is what I get this is not correct right it should show up any help appreciated

1 Like

The command you want is either:

nvcc --version

or

nvcc -V

not

nvcc -v

This is covered in the nvcc manual:

[url]https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/index.html#nvcc-command-options[/url]

4 Likes

thank you