Library not loaded for dev-aspect on MacOS Catalina

I need some assistance troubleshooting my installation. I compiled a development version of ASPECT on my Mac (OS Catalina 10.15.6) using the deal.ii v9.2.0 app. I followed most of the steps here, with the exception of step 4 to get the current development version. It compiles 100% with a few warnings. I then tried to test it starting with make test and get:

bash-3.2$ make test
[ 97%] Built target aspect
[ 98%] Running unit_tests ...
dyld: Library not loaded: libmetis.dylib
Referenced from: /Users/q/aspect_git/aspect/aspect
Reason: image not found
/bin/sh: line 1: 25723 Abort trap: 6 /Users/q/aspect_git/aspect/aspect --test
make[3]: *** [CMakeFiles/run_unit_tests] Error 134
make[2]: *** [CMakeFiles/run_unit_tests.dir/all] Error 2
make[1]: *** [CMakeFiles/test.dir/rule] Error 2
make: *** [test] Error 2

If I attempt to run any cookbook example or test, I get:
bash-3.2$ ../aspect S20RTS.prm
dyld: Library not loaded: libmetis.dylib
Referenced from: /Users/q/aspect_git/aspect/cookbooks/../aspect
Reason: image not found
Abort trap: 6

Any suggestions on what to try next?

Thank you.

Make sure you download the latest version of the dmg and follow the instructions here: https://github.com/dealii/dealii/issues/10656#issuecomment-661154771
(module load dealii).
Let us know if that fixes the issue.

I downloaded the .dmg from https://www.dealii.org/download.html. Indeed, I missed the module load dealii step. After recompiling, I can run a cookbook example. Thanks!