You can install amitools via pip3. Depending on your needs, choose one of the following methods:
Standard Installation
To install the core Python tools (without the vamos emulator):
pip3 install amitools
To install the core tools plus the vamos emulator (requires the machine68k dependency):
pip3 install 'amitools[vamos]'
Installation from GitHub (Latest Features)
If you need the most recent changes or features from the development branch, install directly from GitHub. If you want vamos, you must install machine68k first.
With vamos support:
pip3 install -U git+https://github.com/cnvogelg/machine68k.git
pip3 install -U git+https://github.com/cnvogelg/amitools.git
Without vamos support:
pip3 install -U git+https://github.com/cnvogelg/amitools.git
Developer Setup
To contribute to the codebase, clone the repository and install it in editable mode:
pip3 install cython machine68k
pip3 install -U -e .