Installing Numba Python accelerator
Install Numba by:
conda install numbaor
pip install numbaNumba 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.