gaussian-splatting icon indicating copy to clipboard operation
gaussian-splatting copied to clipboard

SIBR installation failed at json.hpp

Open mingqiJ opened this issue 1 year ago • 3 comments
trafficstars

image

It is so weird why my installation failed at here.

gaussian-splatting/SIBR_viewers/src/./projects/remote/json.hpp:3954:14: fatal error: filesystem: No such file or directory

#include < filesystem >

My environment is ubuntu 2204 cmake 3.24 gcc 7.5 cuda 11.8

mingqiJ avatar Feb 07 '24 21:02 mingqiJ

Hi,

gcc 7 is too old, it does not have a working filesystem implementation (does not fulfill that part of the C++17 standard)

Snosixtyboo avatar Feb 09 '24 21:02 Snosixtyboo

#include <experimental/filesystem> std::experimental::filesystem::xxx

replace filesystem with experimental filesystem

yifeilang avatar Feb 27 '24 13:02 yifeilang

#include <experimental/filesystem> std::experimental::filesystem::xxx

replace filesystem with experimental filesystem

It works for me, thank you!

ZefuLin avatar Mar 27 '25 04:03 ZefuLin