in _win_os_check raise RuntimeError(msg.format(__file__)) from None /tinyurl.com/y3dm3h86

Submitted 3 years, 3 months ago
Ticket #329
Views 357
Language/Framework Python
Priority Medium
Status Closed

** On entry to DGEBAL parameter number  3 had an illegal value
 ** On entry to DGEHRD  parameter number  2 had an illegal value
 ** On entry to DORGHR DORGQR parameter number  2 had an illegal value
 ** On entry to DHSEQR parameter number  4 had an illegal value
Traceback (most recent call last):
  File ".\creategif.py", line 1, in <module>
    import numpy
  File "C:\Training\env\lib\site-packages\imageio\__init__.py", line 22, in <module>
  File "C:\Training\env\lib\site-packages\imageio\core\__init__.py", line 10, in <module>
    from .util import Image, Array, Dict, asarray, image_as_uint, urlopen
  File "C:\Training\env\lib\site-packages\imageio\core\util.py", line 19, in <module>
    import numpy as np
  File "C:\Training\env\lib\site-packages\numpy\__init__.py", line 305, in <module>
    _win_os_check()
  File "C:\Training\env\lib\site-packages\numpy\__init__.py", line 302, in _win_os_check
    raise RuntimeError(msg.format(__file__)) from None
/tinyurl.com/y3dm3h86

when i try to executre any python script its throwing this error

Submitted on Dec 24, 20
add a comment

1 Answer

Verified

i found the solution for this issue. This is due to numpy latest version not supported in windows 10.

After i did the below steps its working fine.

pip uninstall numpy

pip install numpy==1.19.3

Submitted 3 years, 3 months ago


Latest Blogs