美文网首页
Python引用库缺少对应的函数

Python引用库缺少对应的函数

作者: 五秋木 | 来源:发表于2017-11-05 13:13 被阅读0次

最近在编写Python脚本过程中遇到一个问题比较奇怪:Python脚本完全正常没问题,但执行总报错AttributeError 'module' object has no attribute 'xxx'"。
问题定位:
查看import库的源文件,发现源文件存在且没有错误,同时存在源文件的.pyc文件

问题解决方法:
1. 命名py脚本时,不要与pyhon预留字,模块名等相同
2. 删除该库的.pyc文件(因为py脚本每次运行时均会生成.pyc文件;在已经生成.pyc文件的情况下,若代码不更新,运行时依旧会走pyc,所以要删除.pyc文件),重新运行代码;或者找一个可以运行代码的环境,拷贝替换当前机器的.pyc文件即可

You have another file with this name "requests". You need change it and try again.
Also, you can try to use pip for reinstall requests:

相关文章

网友评论

      本文标题:Python引用库缺少对应的函数

      本文链接:https://www.haomeiwen.com/subject/qricmxtx.html