ticket_ai_flask_app/install.sh
2024-02-23 15:29:26 +05:00

14 lines
248 B
Bash

#!/bin/bash
if ! command -v python3 &> /dev/null
then
echo "Error: python3 could not be found"
exit
else
python3 -m venv venv
source venv/bin/activate
pip install Flask
pip install flask_jwt_extended
chmod +x run.sh
fi