sintonia/docs/scripts/install.sh
Kyle Robbertze 44a0cb50e1 Follow pip best practices
Let apt manage system pip3 version
2020-04-29 19:06:52 +02:00

8 lines
229 B
Bash
Executable file

#! /bin/sh
echo "Updating Apt."
apt-get update > /dev/null
echo "Ensuring Pip is installed."
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq python3-pip > /dev/null
echo "Ensuring Mkdocs is installed."
pip3 install mkdocs