Created
May 29, 2020 19:57
-
-
Save Manojbhat09/b8f53f68bb9719453989450fcf237bd0 to your computer and use it in GitHub Desktop.
Install open3d on Debian or Ubuntu on GCP/EC2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Follow http://www.open3d.org/docs/release/compilation.html | |
git clone --recursive https://github.com/intel-isl/Open3D | |
cd open3d | |
util/scripts/install-deps-ubuntu.sh | |
mkdir build | |
cd build | |
cmake -DPYTHON_EXECUTABLE=/path/to/my/python .. | |
make -j5 | |
make install | |
# Xserver issue: | |
sudo apt-get install libx11-dev | |
sudo apt-get install xorg-dev libglu1-mesa-dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment