-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·37 lines (32 loc) · 931 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env bash
SUDO=sudo
if ! command -v $SUDO; then
echo "no sudo on this system, proceeding as current user"
SUDO=""
fi
if command -v apt-get; then
if dpkg -l python3-venv; then
echo "python3-venv is installed, skipping setup"
else
if ! apt info python3-venv; then
echo "package info not found, trying apt update"
$SUDO apt-get -qq update
fi
$SUDO apt-get install -qqy python3-venv
fi
else
echo "Skipping tool installation because your platform is missing apt-get"
echo "If you see failures below, install the equivalent of python3-venv for your system"
fi
source .env
if [ ! -d "${VIRTUAL_ENV:=penv}" ]; then
echo "creating virtualenv at $VIRTUAL_ENV"
python3 -m venv $VIRTUAL_ENV
fi
if [ ! -f .installed ]; then
echo "installing dependencies from requirements.txt"
$VIRTUAL_ENV/bin/pip install -r requirements.txt
if [ $? -eq 0 ]; then
touch .installed
fi
fi