Skip to content

Commit

Permalink
Merge pull request #117 from abby-freakazoid/improve-startup-script
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanVoxel committed May 4, 2024
2 parents 089c8dd + aedc5af commit c27f99e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion TagStudio.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c27f99e

Please sign in to comment.