我试图在我的笔记本电脑上安装pbrt-v3,但它不起作用。我将README命令与虚拟ubuntu bash一起使用。CMake et make做得很好,但我不能使用pbrt,也不能用它打开一个场景:
pbrt killeroo-simble.pbrt
command not found: pbrt谢谢你的帮助。
发布于 2018-02-07 20:40:50
克隆pbrt-v3源码:
git clone --recursive https://github.com/mmp/pbrt-v3/安装C++编译器:
sudo su
[enter password]
apt-get update
apt-get install g++使用CMake设置项目并构建它
cmake pbrt-v3/
cmake --build .现在您应该有了自己的构建pbrt可执行文件
https://stackoverflow.com/questions/48524532
复制相似问题