Hello! I was trying to use three-studio (https://github.com/threestudio-project/threestudio#installation) and I wanted to install tiny-cuda-nn. I set up a virtual environment in vs code and set it as the workspace installed torch but when i try to detect the installation of torch it tell me torch isnt detected. Any help appreciated!
On trying to install tiny-cuda-nn, I get this error:
OSError: Unknown compute capability. Specify the target compute capabilities in the TCNN_CUDA_ARCHITECTURES environment variable or install PyTorch with the CUDA backend to detect it automatically.```
On trying to detect torch, I get false.
``` python -c 'import torch; print(torch.cuda.is_available())'
False```
But pip list displays torch as available
pip list
torch 2.2.2```