nerfstudio搭建 win11踩坑记录之tinycudann

tinycudann安装

  • 安装方法1
  • 安装方法2
    • 错误原因:
    • 解决方法:
    • 测试:
  • 参考

安装方法1

pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch
用上述语句安装,报错:
Failed to build tinycudann; Could not build wheels for tinycudann; Could not find filesystem; xxx.so.xx no such file or directory
Failed to build tinycudann; Could not build wheels for tinycudann; Could not find filesystem; xxx.so.xx no such file or directory

安装方法2

$ git clone --recursive https://github.com/nvlabs/tiny-cuda-nn
$ cd tiny-cuda-nn
tiny-cuda-nn$ cmake . -B build
tiny-cuda-nn$ cmake --build build --config

你可能感兴趣的:(python)