tinycudann几乎是nerf开发环境必备的条件之一。在测试sdfstudio和nerfstudio都需要安装tinycudann。按照官方的操作步骤,最简单的安装步骤为:
pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch
常见会出现如下两个问题:
- Failed to connect to github.com port 443 : Timed out
一般通过代理网络来git clone, 配置教程可以参考。上述问题可以参考该链接
确定代理IP和Port(笔者为127.0.0.1和7890),执行如下指令即可:
git config --global http.proxy http://127.0.0.1:7890 # IP Port换为自己的
git config --global https.proxy http://127.0.0.1:7890
- failed building wheel for tinycudann
这个问题不是wheel库的问题,简单的下述指令无法解决:
pip uninstall wheel # 先卸载
pip install wheel # 再安装
仔细阅读tinycudann官方文档,要求如下安装条件:
结果发现,笔者系统gcc为7.5.0,需要安装高版本gcc,接着安装了gcc11,测试后仍失败,因为要求g++ < 11:
接着安装了gcc-9 g+±9
此时系统中存在多个版本的gcc,需要实现版本切换:
为了进一步验证,配置了sdfstudio环境,同样安装成功。