You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to build on windows with python 3.11 and windows 11 but getting the following error after running script from the app. Is there an extra step to make it work that I'm missing? I couldnt find it in the documents
my requirements.txt
opencv-python==4.10.0.82
numpy==1.24.3
Install it via command:
pip install numpy
Running Python program synchronously...Traceback (most recent call last):
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\__pypackages__\numpy\core\__init__.py", line 23, in <module>
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\__pypackages__\numpy\core\multiarray.py", line 10, in <module>
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\__pypackages__\numpy\core\overrides.py", line 6, in <module>
ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'
many reasons, often due to issues with your setup or how NumPy was
installed.
Traceback (most recent call last):
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\main.py", line 2, in <module>
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\bot.py", line 1, in <module>
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\__pypackages__\cv2\__init__.py", line 11, in <module>
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\__pypackages__\numpy\__init__.py", line 141, in <module>
File "C:\Users\user\AppData\Local\Temp\serious_python_tempdc757e66\__pypackages__\numpy\core\__init__.py", line 49, in <module>
ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.
We have compiled some common reasons and troubleshooting tips at:
https://numpy.org/devdocs/user/troubleshooting-importerror.html
Please note and check the following:
* The Python version is: Python3.11 from "C:\Users\user\Documents\-\ui\-\build\windows\x64\runner\Debug\feribot.exe"
* The NumPy version is: "1.24.3"
and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.
Original error was: No module named 'numpy.core._multiarray_umath'
The text was updated successfully, but these errors were encountered:
I'm trying to build on windows with python 3.11 and windows 11 but getting the following error after running script from the app. Is there an extra step to make it work that I'm missing? I couldnt find it in the documents
my requirements.txt
The text was updated successfully, but these errors were encountered: