码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-08-05 14:08:37      阅读:1076      评论:0      收藏:0      [点我收藏+]

标签:python 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()


报错:

[root@Python 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  执行成功弹出一个文本框,如附件截图:

[root@Python python]# python editor.py 

技术分享


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

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

标签:python attributeerror: 'module' object has no attribute 'app'

原文地址:http://damingzone.blog.51cto.com/3892167/1953796

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!