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
| #!/bin/bash | |
| # clone flatcam beta | |
| git clone -b Beta https://bitbucket.org/jpcgt/flatcam.git flatcam-beta | |
| # grab the python 3.8 AppImage | |
| wget https://github.com/niess/python-appimage/releases/download/python3.8/python3.8.19-cp38-cp38-manylinux1_x86_64.AppImage | |
| # make it executable | |
| chmod +x python3.8.19-cp38-cp38-manylinux1_x86_64.AppImage |