如何删除 Python-kivy 中的 "CannotImport" 错误?
How to remove "CannotImport" error in Python-kivy?
我正在使用 linux mint,我已经使用说明 http://kivy.org/docs/installation/installation-linux.html#ubuntu-11-10-or-newer 安装了 python-kivy,但是在 运行 第一个程序之后出现错误。
我附上了编码和错误截图。
请帮帮我。
from kivy.app import App
class TutorialApp(App):
pass
if __name__=="__main__":
TutorialApp().run()
不要调用您的文件 new.py
- 这与 Python 中的 new
模块冲突,导致循环导入。
我正在使用 linux mint,我已经使用说明 http://kivy.org/docs/installation/installation-linux.html#ubuntu-11-10-or-newer 安装了 python-kivy,但是在 运行 第一个程序之后出现错误。 我附上了编码和错误截图。 请帮帮我。
from kivy.app import App
class TutorialApp(App):
pass
if __name__=="__main__":
TutorialApp().run()
不要调用您的文件 new.py
- 这与 Python 中的 new
模块冲突,导致循环导入。