Created
May 21, 2023 08:56
-
-
Save tudorjnu/eaf0b86604ac207b8041cc0da4ef2b03 to your computer and use it in GitHub Desktop.
downloads and installs v-hacd
This file contains hidden or 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
| set -xe | |
| # remove any copies | |
| rm -f testVHACD | |
| # grab the VHACD (convex segmenter) binary | |
| wget https://github.com/mikedh/v-hacd-1/raw/master/bin/linux/testVHACD | |
| # check the hash of the downloaded file | |
| echo "e1e79b2c1b274a39950ffc48807ecb0c81a2192e7d0993c686da90bd33985130 testVHACD" | sha256sum --check | |
| # make it executable | |
| chmod +x testVHACD | |
| # move it into PATH | |
| mv testVHACD /usr/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment