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
commit c27f99e3a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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