CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/environment_install/APM_install.sh
Views: 1798
1
#!/usr/bin/env bash
2
3
#A simple script to install the APM SITL environment into cygwin
4
5
git clone git://github.com/ArduPilot/ardupilot.git
6
cd ./ardupilot
7
git submodule update --init --recursive
8
./modules/waf/waf-light configure --board=sitl
9
10