AttributeError: 'module' object has no attribute 'App'

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: 'module' object has no attribute 'App'相关的知识,希望对你有一定的参考价值。

环境介绍

基本《Python 基础教程(第2版 修订版)》 作者:[挪] Magnus Lie Hetland 司维 曾军崴 谭颖华 译

操作系统:CentOS release 6.9 (Final)

python版本:Python 2.6.6

程序编辑器:VIM - VI IMproved 7.4

wxPython版本:wxPython-2.8.12.0-1.el6.x86_64

程序源码:

#!/usr/bin/env python

import wx

app = wx.App()

win = wx.Frame(None)

win.Show()

app.MainLoop()


报错:

[[email protected] python]# python wx.py

Traceback (most recent call last):

File "wx.py", line 2, in <module>

import wx

File "/root/python/wx.py", line 3, in <module>

app = wx.App()

AttributeError: ‘module‘ object has no attribute ‘App‘


从网上找到答案:

问题解决方法:

1. 命名py脚本时,不要与python预留字,模块名等相同

2. 删除该库的.pyc文件(因为py脚本每次运行时均会生成.pyc文件;在已经生成.pyc文件的情况下,若代码不更新,运行时依旧会走pyc,所以要删除.pyc文件),重新运行代码;或者找一个可以运行代码的环境,拷贝替换当前机器的.pyc文件即可


解决:

把wx.py 改成 editor.py  执行成功弹出一个文本框,如附件截图:

[[email protected] python]# python editor.py 

技术分享


本文出自 “大明地盘” 博客,请务必保留此出处http://damingzone.blog.51cto.com/3892167/1953796

以上是关于AttributeError: 'module' object has no attribute 'App'的主要内容,如果未能解决你的问题,请参考以下文章

python AttributeError: 'NoneType' object has no attribute 'group'

AttributeError:'str'对象没有属性'author'

Python问题——AttributeError: 'NoneType' object has no attribute 'append'

text AttributeError:模块'enum'没有属性'IntFlag'

返回AttributeError:'int'对象没有属性'encode'

pymysql报AttributeError: module 'pymysql' has no attribute 'connect'