#!/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