I get an error when trying to run my executable Pyinstaller file as follows: Importing the nump C-extensions failed. Original error was: DLL load failed while importing _multiarray_umath: The specified module could not be found.
I have tried uninstalling numpy and setup tools, and then reinstalling but that did not work.
I have tried pip installing msvc-runtime with no luck either.
I currently run Pyinstaller in Powershell: Enter venv pyinstaller --onefile --paths {I enter my script's Lib/site-packages path here} app.py
I have read that I may need to add my Python 3.9 path here?
Any other ideas?
Thanks