Home > Backend Development > Python Tutorial > python提示No module named images的解决方法

python提示No module named images的解决方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-16 08:41:25
Original
1239 people have browsed it

本文讲述了python提示No module named images的解决方法,非常实用!分享给大家供大家参考。具体方法如下:

出现提示:ImportError: No module named images

表示找不到images模块

可将:

import images
Copy after login

替换为:

import wx.py.images as images
Copy after login

将:

images.getNewBitmap
Copy after login

替换为:

images.getPyBitmap()
Copy after login

即可解决问题。

希望本文所述对大家的Python程序设计有所帮助。

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template