本文介绍了Python错误:ImportError:无法导入名称Akismet的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我看到很多类似的错误,但是我看不到适用于我特定问题的解决方案。
I've seen many similar errors, but I can't see a solution that applies to my particular problem.
我试图使用 Akismet模块,那么如果我启动了交互式解释器,当我从akismet导入Akismet (如docstring说)运行时,我收到以下错误:
I'm trying to use the Akismet module which is on my PYTHONPATH, then if I start up the interactive interpreter, when I run from akismet import Akismet
(as the docstring says), I get the following error:
from akismet import Akismet
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name Akismet
推荐答案
如果您的PYTHONPATH设置正确和全球(只是自己测试),将完美工作。
It will work perfectly if your PYTHONPATH is set correctly and globally (just tested it myself).
- 必须设置为包含akismet的目录。 py,而不是文件路径!请确保您不要使用相对路径。
- 请注意,您可能需要重新启动/注销才能对所有程序应用环境变量更改。
这篇关于Python错误:ImportError:无法导入名称Akismet的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!