Reputation: 2099
I'm trying to run some Python code in VS Code in an environment.
then:
So, what am I doing wrong here?
Upvotes: 0
Views: 22
Reputation: 2923
This seems to be an issue with Numba incompatibility with NumPy.
Try to upgrade Numba (atleast to version 0.53).
pip install numba --upgrade
Upvotes: 0