Faults when importing numba

I have a very perplexing problem that I was hoping someone could help me with. I’m trying to use numba on mac os x Mojave. When I try to import numba, I get various faults. Here is an example terminal output:

Last login: Tue Nov 23 00:18:36 on ttys000
~ python
Python 3.8.12 (default, Nov 13 2021, 07:19:09)
[Clang 10.0.1 (clang-1001.0.46.4)] on darwin
Type “help”, “copyright”, “credits” or “license” for more information.

import numba as nb
[1] 97148 segmentation fault python
~ python
Python 3.8.12 (default, Nov 13 2021, 07:19:09)
[Clang 10.0.1 (clang-1001.0.46.4)] on darwin
Type “help”, “copyright”, “credits” or “license” for more information.
import numba as nb
[1] 3802 illegal hardware instruction python
~ python
Python 3.8.12 (default, Nov 13 2021, 07:19:09)
[Clang 10.0.1 (clang-1001.0.46.4)] on darwin
Type “help”, “copyright”, “credits” or “license” for more information.
import numba as nb
[1] 5816 illegal hardware instruction python
~

This is not something I’ve run into before, and everything I’m used to trying (reinstalling everything, setting different versions in macports) doesn’t fix it. I have uninstalled and reinstalled all the ports that seem like numba should be dependent on them, such as numpy, llvmlite, llvm, and even python3.8. Is there anything else I should try?

I have another computer (same os) that is running numba with no issues, so I can’t figure out what the problem is here. (Unfortunately, I’m not allowed to use this particular script on that other computer, for work-related reasons.)

Any advice would be appreciated. Thanks!