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/install-prereqs-alpine.sh
Views: 1798
1
#!/usr/bin/env sh
2
echo "---------- $0 start ----------"
3
set -e
4
set -x
5
6
echo "==================================================================="
7
echo "Warning: This script is not fully tested. Please report any issues."
8
echo "==================================================================="
9
10
11
apk update && apk add --no-cache \
12
linux-headers \
13
g++ \
14
python3 \
15
py-future \
16
py-pip \
17
libxml2-dev \
18
libxslt-dev \
19
git \
20
&& rm -rf /var/cache/apk/*
21
22
python3 -m pip install --user --no-deps --no-cache-dir empy==3.3.4 pexpect ptyprocess --break-system-packages
23
24