导入错误:没有名为行的模块
from lines import lines
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
import lines
ImportError: No module named lines
这取自 Pycha 的此示例。我如何安装这个模块?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
模块
lines.py
是 Pycha 示例的一部分。您可以在该目录中找到该模块的副本。要正确遵循该示例,您应该调用
examples/barchart.py
示例,同时仍然维护examples
目录的其余部分。然后它就会起作用。如果您想根据示例创建自己的脚本,则必须用您自己的代码/数据替换该模块。
The module
lines.py
is part of the Pycha examples. You can find a copy of that module in that directory.To follow the example correctly, you should call the
examples/barchart.py
example while still maintaining the rest of theexamples
directory. Then it will work.If you want to create an own script based on the example, you’ll have to replace that module with your own code/data.
该模块应位于文件名
lines.py
中,该文件位于 模块搜索路径。The module should be in a file name
lines.py
that is somewhere in your module search-path.