Sep 22, 2024
Hi, if I understood correctly, the "requirements.txt" file is missing from the repository...
To resolve the "no module named 'aviary'" error, following these steps:
1. Update the repository on your machine with the command:
git pull
2. Install the dependencies from the "requirements.txt" file by running:
pip install -r requirements.txt
--This command will create a requirements.txt file containing all the libraries installed in your environment.--
That should be it... hopefully!