Install error on Ubuntu 14.04, CUDA 6.5 with setup.py/pip
See original GitHub issuenvcc -I/usr/include/python2.7 -c cudamat/cudamat.cu -o build/temp.linux-x86_64-2.7/cudamat/cudamat.o -O --ptxas-options=-v --compiler-options '-fPIC' unable to execute nvcc: No such file or directory error: command 'nvcc' failed with exit status 1
There is little chance that this comes from my configuration, since I reverted to a346369447e9b2dbb730e4218a4c0eaa153840ef and ran make
and the tests successfully.
Issue Analytics
- State:
- Created 9 years ago
- Comments:13 (6 by maintainers)
Top Results From Across the Web
How to install CUDA-6.5 on Ubuntu 14.04? - nvidia
Same error message with me, but none of the above answers helped in my case (Ubuntu 14.10). Therefore, first dissect the error message....
Read more >Ubuntu 14.04 how to install cuda 6.5 without installing nvidia ...
CUDA Samples. So use the runfile installer method, and simply select "no" to the first prompt, if you don't want to install the...
Read more >Wrong when install cuda in VMware "Incomplete ... - GitHub
Hello all, I installed Ubuntu 14.04 ,64 bit in VMware. ... A driver of version at least 340.00 is required for CUDA 6.5...
Read more >NVIDIA CUDA Installation Guide for Linux
The installation instructions for the CUDA Toolkit on Linux.
Read more >Installing Nvidia CUDA on Ubuntu 14.04 for Linux GPU ...
In this article I am going to discuss how to install the Nvidia CUDA toolkit for carrying out high-performance computing (HPC) with an...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This doesn’t change where
nvcc
is searched for, thatPATH
is just a backup of the environment variable to avoid Anaconda sneaking in a wrong MSVC version on Windows. You’d need to modifyos.environ['PATH']
, or just change yourPATH
environment variable. Did you restart your terminal after changing the.bashrc
? You can tryecho $PATH
to see if the path is correct.Note that when you’re using
sudo
, thePATH
will be overridden, no matter what you set it to. You can dosudo PATH="$PATH" ...
to have the environment carry over.@nateGeorge: What about
pip install http://github.com/f0k/cudamat/archive/simplify-compile.zip
, does this fail as well? It’s a little different, but not sure if this would help. Did you try installing withsudo
or without?