无法在Python中导入RRDtool

发布于 2024-10-19 12:14:08 字数 619 浏览 2 评论 0原文

我正在尝试将 RRDtool 导入 Python,因为我想使用 Python 访问 RRD 数据库,但是当我正在尝试导入rrdtool我收到以下错误。

Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path.append('/opt/rrdtool-1.4.5/bin')
>>> import rrdtool
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named rrdtool

我的 RRDtool 位于 /opt/rrdtool-1.4.5/bin 中。

I am trying to import RRDtool into Python as I want to access an RRD database using Python, but when I am trying to import rrdtool I am getting the following error.

Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path.append('/opt/rrdtool-1.4.5/bin')
>>> import rrdtool
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named rrdtool

My RRDtool is located in /opt/rrdtool-1.4.5/bin.

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

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

发布评论

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

评论(4

゛清羽墨安 2024-10-26 12:14:08

好了,只要执行下面的命令,问题就解决了。

sudo apt-get install python-rrd

Well, the problem is solved just by executing the following command.

sudo apt-get install python-rrd

七堇年 2024-10-26 12:14:08

您可能需要 py-rrdtool,您可以直接从站点或包管理器获取它。

You probably need py-rrdtool, which you could get directly from the site or your package manager.

时间你老了 2024-10-26 12:14:08

Python 模块不太可能位于“bin”文件夹内。从某些配置的路径导入文件要求引用的路径是正确的Python包。这意味着它必须包含一个__init__.py文件。

It is unlikely that Python modules are located inside a 'bin' folder. And importing files from some configured path requires that the referred path is a proper Python package. It means it must contain an __init__.py file.

瀟灑尐姊 2024-10-26 12:14:08

您可以使用 RRDtool 文档来获取灵感 (man rrdpyton)。某物
的思路。

import sys
sys.path.append('/path/to/rrdtool/lib/python2.6/site-packages/')
import rrdtool

沿着应该可以解决问题

You could use the RRDtool documentation for inspiration (man rrdpyton). Something
along the lines of

import sys
sys.path.append('/path/to/rrdtool/lib/python2.6/site-packages/')
import rrdtool

should do the trick.

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