我使用Debian GNU/Linux 8.7 (jessie)
和python2.7
上的pyudev库来检测USB设备,如下所示:
import sys
import pyudev
def main():
os = canary.helpers.get_platform_system()
if os.lower() == "linux":
print("linux")
context = pyudev.Context
monitor = pyudev.Monitor.from_netlink(context)
monitor.filter_by(device_type='usb')
elif os.lower() == 'darwin': # actually OS X
print("OS X is currently not supported, if you would like to add support make a pull request. Aborting...")
sys.exit()
elif os.lower() == 'windows':
print("Windows is currently not supported, if you would like to add support make a pull request. Aborting...")
sys.exit()
else:
print("Unknown operating system. Aborting...")
sys.exit()
if __name__ == "__main__":
main()
如多个示例所示,但是当我运行代码时,我会得到以下错误:
/usr/bin/python2.7 /home/marvin/src/usb_canary/usb_canary.py
linux
Traceback (most recent call last):
File "/home/marvin/src/usb_canary/usb_canary.py", line 45, in <module>
main()
File "/home/marvin/src/usb_canary/usb_canary.py", line 30, in main
monitor = pyudev.Monitor.from_netlink(context)
File "/usr/local/lib/python2.7/dist-packages/pyudev/monitor.py", line 121, in from_netlink
monitor = context._libudev.udev_monitor_new_from_netlink(
AttributeError: type object 'Context' has no attribute '_libudev'
最初,在通过pip安装pyudev
后,我忘记确保安装了libudev-dev
,所以我安装了libudev-dev
,卸载了pyudev
,并通过pip重新安装了它,但错误仍然存在。
我目前正在运行libudev-dev
215版
有人能告诉我们为什么会发生这个错误,以及如何潜在地修复它吗?我查看了他们的Github问题,但没有发现任何人有同样的问题。我也查看了他们阅读文档的wiki,但仍然没有运气。
似乎需要实例化Context才能使用它,所以添加了paranthes:
context = pyudev.Context()
那么filter_by
需要另一个输入参数。但如果你看一下这些文件,你可能会明白的。