Error when loading scipy: OSError: [WinError 126] The specified module could not be found

后端 未结 1 1871
轻奢々
轻奢々 2021-01-22 00:16

I have installed scipy for python3 using pip inside of a virtualenv. When I try to import scipy, I get the following error:

>>> import scipy
Traceback (m         


        
相关标签:
1条回答
  • 2021-01-22 01:10

    just faced the same error. The solution is downgrade scipy:

    pip install scipy==1.4.1
    

    I found it here:

    https://github.com/pytorch/ignite/issues/1153

    0 讨论(0)
提交回复
热议问题