Home Open3D c++ 설치
Post
Cancel

Open3D c++ 설치

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# clone open3d
git clone --recursive https://github.com/isl-org/Open3D
cd Open3D
git submodule update --init --recursive

# install dependencies
util/install_deps_ubuntu.sh

# build
mkdir build
cd build
cmake -DCMAKE_GLIBCXX_USE_CXX11_ABI=ON ..
make -j$(nproc)

# install
make install

DGLIBCXX_USE_CXX11_ABI=ON 을 해줘야 linker 오류 해결 가능

This post is licensed under CC BY 4.0 by the author.