blob: a28af11b3d58edd8bd35ea95bc06afd93d530e30 (
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
/root/.local/bin/poetry install
|