screenshot-to-code/screenshottocode/build.sh
2023-12-26 19:03:45 +00:00

12 lines
207 B
Bash

#!/usr/bin/env bash
# exit on error
set -o errexit
echo "Installing the latest version of poetry..."
pip install --upgrade pip
pip install poetry==1.4.1
rm poetry.lock
poetry lock
python -m poetry install