导入错误:没有名为行的模块

发布于 2024-12-12 05:15:52 字数 301 浏览 1 评论 0 原文

from lines import lines 

Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    import lines
ImportError: No module named lines

这取自 Pycha 的示例。我如何安装这个模块?

from lines import lines 

Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    import lines
ImportError: No module named lines

This is taken from this example for Pycha. How I can install this Module?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奢欲 2024-12-19 05:15:52

模块 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 the examples 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.

心欲静而疯不止 2024-12-19 05:15:52

该模块应位于文件名 lines.py 中,该文件位于 模块搜索路径

The module should be in a file name lines.py that is somewhere in your module search-path.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文