mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 16:14:38 +00:00
11 lines
491 B
Bash
11 lines
491 B
Bash
#!/bin/bash
|
|
# this is a script shell sets up an ubuntu (16.04, 18.04, 20.04) environment where
|
|
# MeshLab can be compiled.
|
|
#
|
|
# Run this script if you never installed any of the MeshLab dependencies.
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y qt5-default qttools5-dev-tools qtdeclarative5-dev libqt5xmlpatterns5-dev
|
|
sudo apt-get install -y mesa-common-dev libglu1-mesa-dev libglew-dev lib3ds-dev libeigen3-dev
|
|
sudo apt-get install -y libopenctm-dev libgmp-dev libqhull-dev patchelf cmake
|