Installing Numba Python accelerator
Install Numba by:
conda install numba
or
pip install numba
Numba JIT compiles unmodified Python code.
Ensure code is Numba accelerated with option
@jit(nopython=True)
def myfunc(...):
which will error if the code is not acceleratable.