Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法

Posted 闲云野鹤的博客日志

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法相关的知识,希望对你有一定的参考价值。

最近在编写Python脚本过程中遇到一个问题比较奇怪:Python脚本完全正常没问题,但执行总报错"AttributeError: ‘module‘ object has no attribute ‘xxx‘"。这其实是.pyc文件存在问题。

问题定位:

查看import库的源文件,发现源文件存在且没有错误,同时存在源文件的.pyc文件

 

问题解决方法:

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

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

以上是关于Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法

Python 脚本报错AttributeError: 'module 'yyy' has no attribute 'xxx'的解决方法

python 脚本运行时报错: AttributeError: 'module' object has no attribute ***

python脚本AttributeError: module 'xxxx' has no attribute 'xxxxx'错误解决办法

python报错: AttributeError module 'time' has no attribute 'clock'

python-pip升级报错- AttributeError: 'NoneType' object has no attribute 'bytes'