我在 ipython 中导入 lmfit 时遇到问题。
使用 python 2.7.9 运行 ipython 2.30:导入 lmfit 会产生两个错误:
1)
/home/cfigura/.local/lib/python2.7/site-packages/lmfit/ui/ipy_fitter.py in <module>()
14 # Handle the change in naming from 2.x to 3.x.
15 if IPython.release.version_info[0] == 2:
---> 16 from IPython.html.widgets import DropdownWidget as Dropdown
17 from IPython.html.widgets import ButtonWidget as Button
18 from IPython.html.widgets import ContainerWidget as Box
ImportError: No module named html.widgets
如果我尝试重新导入,该错误就会消失,我得到这个:
In [2]: import lmfit
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-2-58ac0858c54d> in <module>()
----> 1 import lmfit
/home/cfigura/.local/lib/python2.7/site-packages/lmfit/__init__.py in <module>()
42
43 from .model import Model, CompositeModel
---> 44 from . import models
45
46 from . import uncertainties
ImportError: cannot import name models
重新运行导入时 此错误不会消失。
如果我不使用 ipython 而只是导入到普通的 python shell,我没有错误/问题。显然与 ipython 存在某种冲突!
有没有人看到类似的东西,或者可以指出我正确的方向来解决这个问题?马哈洛!