diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install_dependencies.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install_dependencies.sh b/scripts/install_dependencies.sh index 9bbf541..a28af11 100755 --- a/scripts/install_dependencies.sh +++ b/scripts/install_dependencies.sh @@ -3,6 +3,6 @@ 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 -poetry install +/root/.local/bin/poetry install |