WINDOWS Installer
Are you upgrading?
If you have an older version of AviaNZ installed, follow these steps to uninstall AviaNZ and delete the previous user settings. Note that after the upgrade, any recognisers created earlier will be lost. If you would like to keep them, please get in touch for instructions.
- Uninstall the previous version of AviaNZ.
- Find the folder
C:\Users\(user name)\AppData\Roaming
. This is a hidden folder, so you may need to tick "Show hidden items" or a similar option in your file manager.
- Delete the
AviaNZ
folder there.
- Then follow the "Windows installer" instructions below.
Windows installer (most users)
To install AviaNZ:
- Fill in the form below to download the installer.
- Run
AviaNZ-v3.2.exe
and follow the prompts.
Install from source
If the installer does not work, you may try installing from source. Follow instructions in the "Windows Source" tab.
WINDOWS Source
Install from source code
- Install Anaconda by following instructions from https://docs.anaconda.com/anaconda/install/windows.
- Fill in the form below to to get the zip file of the latest release.
- Extract (
unzip AviaNZ-master.zip
).
- Open Anaconda command prompt.
- Navigate to the extracted directory.
- Install the required packages by running
pip install -r requirements.txt --user
at the command line.
- Build the Cython extensions by running
cd ext; python setup.py build_ext -i; cd..
- Done! Launch the software with
python AviaNZ.py
MacOS
Mac App
- Fill in the form below to download
avianz-mac.zip
. Extract it to your home directory.
- Press control and click on it, select open. If that asks for security checks, accept them.
- If it says that it is broken, go to Applications -> Utilities -> Terminal and open that. Type the following:
xattr -rc ~/AviaNZv3.2.app
- Now try and open it again.
- You can drag the app icon to the Dock, and start AviaNZ from there.
Linux
Install from source code
- Complete the form below to get the zip file.
- Extract (
unzip AviaNZ-master.zip
) and navigate to the extracted directory.
- Ensure Python (3.6 or higher), pip and git are available on your system. On Ubuntu, these can be installed by running:
sudo apt-get install python3.6
sudo apt-get install python3-pip
sudo apt-get install git
- Install the required packages by running
pip3 install -r requirements.txt --user
at the command line. (On Ubuntu and some other systems, python
and pip
refer to the Python 2 versions. If you are sure these refer to version 3 of the language, use python
and pip
in steps 4-6).
- Build the Cython extensions by running
cd ext; python3 setup.py build_ext -i; cd..
- Done! Launch the software with
python3 AviaNZ.py