bennyguo / instant-nsr-pl

Neural Surface reconstruction based on Instant-NGP. Efficient and customizable boilerplate for your research projects. Train NeuS in 10min!
MIT License
856 stars 84 forks source link

No CUDA tookit found #35

Closed joker1499 closed 1 year ago

joker1499 commented 1 year ago

image In the conda environment, I still haven't solved this problem after executing conda install tookit=11.3. What may be the cause?

bennyguo commented 1 year ago

Compiling NerfAcc would require having nvcc excutable in $PATH and CUDA runtime library in $LD_LIBRARY_PATH. If you use conda, please find the CUDA toolkit path inside conda, put PATH_TO_CUDA/bin in $PATH and PATH_TO_CUDA/lib64 in $LD_LIBRARY_PATH.

joker1499 commented 1 year ago

The problem has been identified because the cuda version set by my environment variable is incorrect. Thank you for giving me the direction to solve the problem!