From 70500ed9fd0a3c6f85823600b66046bec87c31e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20V=C3=B8lund=20Skov=20Mortensen?= <22987563+OleMortensen8@users.noreply.github.com> Date: Tue, 23 Apr 2024 07:32:13 +0200 Subject: [PATCH] added Start script to boot into linux provided you have python installed --- TagStudio.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 TagStudio.sh diff --git a/TagStudio.sh b/TagStudio.sh new file mode 100755 index 00000000..82036413 --- /dev/null +++ b/TagStudio.sh @@ -0,0 +1,5 @@ +#! /bin/bash +python3 -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +python tagstudio/tagstudio.py \ No newline at end of file