我正在尝试将RRDtool导入 Python,因为我想使用 Python 访问 RRD 数据库,但是当我尝试时,import 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
.