Posted in Python onSeptember 29, 2014
本文讲述了python提示No module named images的解决方法,非常实用!分享给大家供大家参考。具体方法如下:
出现提示:ImportError: No module named images
表示找不到images模块
可将:
import images
替换为:
import wx.py.images as images
将:
images.getNewBitmap
替换为:
images.getPyBitmap()
即可解决问题。
希望本文所述对大家的Python程序设计有所帮助。
python提示No module named images的解决方法
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@