Merge pull request #117 from abby-freakazoid/improve-startup-script

This commit is contained in:
Travis Abendshien
2024-05-04 15:53:36 -07:00
committed by GitHub

View File

@@ -1,5 +1,7 @@
#! /usr/bin/env bash
python3 -m venv .venv
set -e
cd "$(dirname "$0")"
! [ -d .venv ] && python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python tagstudio/tag_studio.py