This package must be installed with conda
.
- Create the environment from the
environment.yml
file:conda env create --name=<name_of_your_environment> --file=environment.yml
- Activate the environment:
conda activate <name_of_your_environment>
- Build the C++ extensions by running
make
. - Check that you can run the example simulation: from within the top-level directory of the repository, run
python -m pyanimats <output_directory> run experiments/example.yml
You can run pyanimats
from the command line like so:
python -m pyanimats
Note that you must run it as a Python module, i.e. with python -m
.
To see information on how to use the CLI, run
python -m pyanimats --help