Installation
There are three options of using/installing modman:
1. Build it yourself (recommended):
- Build the program:
pyinstaller modman.spec - Run the program:
./dist/modman(Linux) or.\dist\modman.exe(Windows)
2. Don't install it, just use it with python:
- Create venv:
python -m venv .venv - Access venv:
source .venv/bin/activate(Linux) or.\venv\Scripts\activate(Windows) - Install the requirements:
pip install -r requirements.txt - Run the program:
python main.py [options] - (If you are using NixOS, then just run
nix-shellto skip the first three steps)
3. Use the prebuilt versions:
- Go to the releases and download a version
- Run the program:
./dist/modman(Linux) or.\dist\modman.exe(Windows)