玛雅维保存图片问题

2024-09-28 05:23:01 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在开发一个使用Mayavi包的桌面应用程序。所以,我将anacondamayavi 4.4.0和{}(python 2.7)一起使用。当我尝试使用Mayavi接口保存图像时,我得到:

KGlobal::locale(): Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions before your main component was created. You should not do that since it most likely will not work
Object::connect: No such signal org::freedesktop::UPower::DeviceAdded(QDBusObjectPath)
Object::connect: No such signal org::freedesktop::UPower::DeviceRemoved(QDBusObjectPath)
kfilemodule(5709): couldn't create slave: "Unable to create io-slave:
klauncher said: Unknown protocol ''.
" 
Traceback (most recent call last):
  File "/home/facu/anaconda/lib/python2.7/site-packages/pyface/ui/qt4/action/action_item.py", line 358, in _qt4_on_triggered
    action.perform(action_event)
  File "/home/facu/anaconda/lib/python2.7/site-packages/pyface/action/action.py", line 100, in perform
    self.on_perform()
  File "/home/facu/anaconda/lib/python2.7/site-packages/tvtk/pyface/ui/qt4/decorated_scene.py", line 159, in _save_snapshot
    if dialog.open() == OK:
  File "/home/facu/anaconda/lib/python2.7/site-packages/pyface/i_dialog.py", line 122, in open
    self.close()
  File "/home/facu/anaconda/lib/python2.7/site-packages/pyface/ui/qt4/file_dialog.py", line 103, in close
    self.wildcard_index = self.control.nameFilters().index(
AttributeError: 'QStringList' object has no attribute 'index'

我已经修复了编辑*.py文件的其他问题,我不知道如何修复这个问题。在


Tags: inpyselfhomelibpackageslinesite

热门问题