Python prompts for a solution to No module named images

  • 2020-04-02 14:13:03
  • OfStack

This article describes the solution to python tip No module named images, very practical! Share with you for your reference. Specific methods are as follows:

An import terror: No module named images appears

The images module cannot be found

Will:


import images

Replace with:


import wx.py.images as images

Will:


images.getNewBitmap

Replace with:


images.getPyBitmap()

Can solve the problem.

I hope this article has helped you with your Python programming.


Related articles: