A GUI manager tool designed to simplify the use of me3.
Visit ME3 Manager Help.
- Python 3.13
- (optional) uv
Using venv for isolation is strongly recommended.
git clone https://github.com/2Pz/me3-manager.git
cd me3-manager
# Create venv
python -m venv .venv
# Activate venv
# On Linux/macOS:
source .venv/bin/activate
# On Windows:
.venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run the GUI app
me3-managerOur requirements.txt includes -e ., which installs the project directory as an editable install. You can make changes to the source code, then run me3-manager to see your changes immediately.
uv is much faster than pip, and will manage deps and venv for you.
git clone https://github.com/2Pz/me3-manager.git
cd me3-manager
# Run the GUI app
uv run me3-managerFor more development notes, tools, and building, see DEVELOPMENT.md.
Contributions are welcome! Please open an issue if you have any questions about what to work on.
This project is licensed under the MIT License.