Skip to content
Jafar edited this page Aug 6, 2025 · 1 revision

If you are currently using previous releases of MOA, you can upgrade to the latest release using Git.

1. Save your local changes

git stash

2. Fetch the latest changes from the MOA repository

git pull origin main

3. Fetch the repository tags

git fetch --tags

Now, go to the MOA releases page, take the tag of the latest version, and replace <latest_release_tag> in the following command:

git checkout tags/<latest_release_tag>

4. Now restore your local changes

git stash pop

5. Then, to update dependencies:

pip install --upgrade -r requirements.txt

Clone this wiki locally