Getting Started
All you need to get started making mods with Tempo.
Requirements
Tempo runs on Windows and Linux.
- Git
- uv (later on, uv will not be needed for prebuilt executables)
- Python 3.9.1 or later is needed only if you install from source via pip or pipx.
- For prebuilt executables, Python is not required, but Git and uv are still needed.
Installation
Tempo is distributed as a single package, tempo-cli, which relies on tempo-core.
Install `tempo-cli'
pip install git+https://www.github.com/tempo-cli
pipx install git+https://www.github.com/tempo-cli
uv add git+https://www.github.com/tempo-cli
Prebuilt Releases
If you prefer prebuilt executables, downloads are available for Windows and Linux in the Releases section:
- Windows:
tempo_cli.exe - Linux:
tempo_cli
Adding to your PATH
To run the prebuilt executables from any terminal, you should add them to your system PATH:
Windows:
- Move
tempo_cli.exeto a folder of your choice (e.g.C:\programs\tempo_cli). - Open Settings → System → About → Advanced system settings → Environment Variables.
- Under System Variables, select
Pathand click Edit. - Click New and add the folder path where
tempo_cli.exeis located (e.g.C:\programs\tempo_cli). - Click OK to save changes. Open a new Command Prompt to use
tempo_clifrom any directory.
Linux:
- Move
tempo_clito a folder of your choice (e.g.,/usr/local/bin). - Make sure it’s executable:
chmod +x /usr/local/bin/tempo_cli
- If the folder isn’t already in your PATH, add it by editing your shell config file (
~/.bashrc,~/.zshrc, etc.):
export PATH=$PATH:/usr/local/bin
- Reload your shell:
source ~/.bashrc
You can now run tempo_cli from any directory.
Tempo CLI
There are a number of commands available which will aid you in building mods. Run the following for a list of the available commands:
tempo_cli --help
Need help?
See the help page for how to get help with Tempo, or to report bugs.