update tagstudio.py refrences to tag_studio.py

This commit is contained in:
Andrew Arneson 2024-04-24 22:00:40 -06:00
parent 2b5697ea50
commit 0b1c097f97
4 changed files with 5 additions and 5 deletions

2
.vscode/launch.json vendored
View file

@ -8,7 +8,7 @@
"name": "TagStudio", "name": "TagStudio",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"program": "${workspaceRoot}/tagstudio/tagstudio.py", "program": "${workspaceRoot}/tagstudio/tag_studio.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"justMyCode": true, "justMyCode": true,
"args": [] "args": []

View file

@ -90,14 +90,14 @@ _Learn more about setting up a virtual environment [here](https://docs.python.or
To launch TagStudio, launch the `start_win.bat` file. You can modify this .bat file or create a shortcut and add one or more additional arguments if desired. To launch TagStudio, launch the `start_win.bat` file. You can modify this .bat file or create a shortcut and add one or more additional arguments if desired.
Alternatively, with the virtual environment loaded, run the python file at `tagstudio\tagstudio.py` from your terminal. If you're in the project's root directory, simply run `python3 tagstudio/tagstudio.py`. Alternatively, with the virtual environment loaded, run the python file at `tagstudio\tag_studio.py` from your terminal. If you're in the project's root directory, simply run `python3 tagstudio/tag_studio.py`.
> [!CAUTION] > [!CAUTION]
> TagStudio on Linux & macOS likely won't function correctly at this time. If you're trying to run this in order to help test, debug, and improve compatibility, then charge on ahead! > TagStudio on Linux & macOS likely won't function correctly at this time. If you're trying to run this in order to help test, debug, and improve compatibility, then charge on ahead!
#### macOS #### macOS
With the virtual environment loaded, run the python file at "tagstudio/tagstudio.py" from your terminal. If you're in the project's root directory, simply run `python3 tagstudio/tagstudio.py`. When launching the program in the future, remember to activate the virtual environment each time before launching *(an easier method is currently being worked on).* With the virtual environment loaded, run the python file at "tagstudio/tag_studio.py" from your terminal. If you're in the project's root directory, simply run `python3 tagstudio/tag_studio.py`. When launching the program in the future, remember to activate the virtual environment each time before launching *(an easier method is currently being worked on).*
#### Linux #### Linux

View file

@ -2,4 +2,4 @@
python3 -m venv .venv python3 -m venv .venv
source .venv/bin/activate source .venv/bin/activate
pip install -r requirements.txt pip install -r requirements.txt
python tagstudio/tagstudio.py python tagstudio/tag_studio.py

View file

@ -1,2 +1,2 @@
@echo off @echo off
.venv\Scripts\python.exe .\TagStudio\tagstudio.py --ui qt %* .venv\Scripts\python.exe .\TagStudio\tag_studio.py --ui qt %*