Skip to content

Instantly share code, notes, and snippets.

@Manojbhat09
Created May 29, 2020 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Manojbhat09/b8f53f68bb9719453989450fcf237bd0 to your computer and use it in GitHub Desktop.
Save Manojbhat09/b8f53f68bb9719453989450fcf237bd0 to your computer and use it in GitHub Desktop.
Install open3d on Debian or Ubuntu on GCP/EC2
# 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