aboutsummaryrefslogtreecommitdiff
path: root/scripts/install_dependencies.sh
blob: ea78008aa3469728a9d0c5efd2c7735c1eee1d7a (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
if ! command -v poetry &> /dev/null
then
	curl -sSL https://install.python-poetry.org | python3 -
fi
export PATH="/root/.local/bin:$PATH"
cd /home/ec2-user/dep-dir
/root/.local/bin/poetry install