-
-
Notifications
You must be signed in to change notification settings - Fork 417
Closed
Labels
Type: DocumentationAdditions/changes to documentationAdditions/changes to documentationType: EnhancementNew feature or requestNew feature or requestType: InstallationInstalling, building, and/or launching the programInstalling, building, and/or launching the program
Description
I managed to build & run on macOS so I'm sharing:
It didn't work with the latest version of python, something related to dependencies, but 3.10 works so try with that.
I recommend using mise for installation of python, it can also handle the rest of the build. Using mise, this is how you build on macOS (and potentially linux)
Put this into a file called .mise.toml
in the project directory
[tools]
python = "3.10"
[env]
_.python.venv = { path = ".venv", create = true }
[tasks.tagstudio]
run = "pip install -r requirements.txt && python tagstudio/tagstudio.py"
and then run (with installed mise) mise trust && mise install
, this will install python and create the venv and you can run the normal linux/ macos build instruction, or alternatively use mise run --yes tagstudio
one-liner
the app & gui starts but looks a little fucky
Metadata
Metadata
Assignees
Labels
Type: DocumentationAdditions/changes to documentationAdditions/changes to documentationType: EnhancementNew feature or requestNew feature or requestType: InstallationInstalling, building, and/or launching the programInstalling, building, and/or launching the program