oimodeler python包-示例脚本

f4t66c6m  于 2023-03-21  发布在  Python
关注(0)|答案(1)|浏览(124)

我安装了这个包:
https://github.com/oimodeler/oimodeler
我正在尝试oimodeler-main/examples/Other/createModelChromatic.py
我得到一个错误:

AttributeError: module 'numpy' has no attribute 'asscalar'

我在oimodeler目录的任何脚本中都没有找到ascarcalar。请问这个错误是什么原因造成的?
我得到相同的错误后:

import oimodeler as oim
zfciruhq

zfciruhq1#

看起来函数asscalar已经是deprecated since Numpy version 1.16了。你可以降级你的Numpy版本,但理想情况下,包的开发人员应该更新他们的代码。

相关问题