AttributeError: module 'scipy.special' has no attribute 'marcumq'
时间: 2023-11-09 20:05:09 浏览: 219
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
这个错误是由于您使用的版本的SciPy库中没有'marcumq'属性导致的。您可以尝试升级SciPy库来解决这个问题。使用以下命令来更新SciPy:
```
pip install --upgrade scipy
```
如果您已经使用了最新版本的SciPy,但仍然遇到该错误,可能需要考虑其他解决方案或寻求其他开发者的帮助。
阅读全文