Python Windows:DLL加载失败

Python Windows:DLL加载失败,python,windows,Python,Windows,我试图在Windows(PowerShell)上编译.py文件,但出现以下错误: PS C:\Users\User\TESI_M\CODICI\SETTORI_ESTR_unico> python3 nest.py Traceback (most recent call last): File "nest.py", line 8, in <module> from bicm import BipartiteGraph File "C

我试图在Windows(PowerShell)上编译.py文件,但出现以下错误:

PS C:\Users\User\TESI_M\CODICI\SETTORI_ESTR_unico> python3 nest.py
Traceback (most recent call last):
  File "nest.py", line 8, in <module>
    from bicm import BipartiteGraph
  File "C:\Users\User\TESI_M\CODICI\SETTORI_ESTR_unico\bicm\__init__.py", line 17, in <module>
    from .graph_classes import *
  File "C:\Users\User\TESI_M\CODICI\SETTORI_ESTR_unico\bicm\graph_classes.py", line 10, in <module>
    from scipy.stats import norm, poisson
  File "C:\Users\User\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\scipy\stats\__init__.py", line 384, in <module>
    from .stats import *
  File "C:\Users\User\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\scipy\stats\stats.py", line 179, in <module>
    from scipy.spatial.distance import cdist
  File "C:\Users\User\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\scipy\spatial\__init__.py", line 99, in <module>
    from .qhull import *
ImportError: DLL load failed: Impossibile trovare il modulo specificato.
PS C:\Users\User\TESI\u M\CODICI\SETTORI\u ESTR\u unico>python3 nest.py
回溯(最近一次呼叫最后一次):
文件“nest.py”,第8行,在
从bicm导入二分图
文件“C:\Users\User\TESI\u M\CODICI\SETTORI\u ESTR\u unico\bicm\uuuu init\uuuu.py”,第17行,在
从.graph\u类导入*
文件“C:\Users\User\TESI\u M\CODICI\SETTORI\u ESTR\u unico\bicm\graph\u classes.py”,第10行,在
从scipy.stats导入规范,泊松
文件“C:\Users\User\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\Local Packages\Python37\site Packages\scipy\stats\\ uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
从.stats导入*
文件“C:\Users\User\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7\u qbz5n2kfra8p0\LocalCache\Local Packages\Python37\site Packages\scipy\stats\stats.py”,第179行
从scipy.spatial.distance导入cdist
文件“C:\Users\User\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\Local Packages\Python37\site Packages\scipy\space\\ uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
从.qhull导入*
ImportError:DLL加载失败:不可能的trovare il模规格。
(最后一行可以标记为“找不到指定的模块”)

在Mac上,我没有任何问题,在Windows上使用jupyter笔记本编译时,它也可以正常工作。我能做些什么来解决这个问题