How to import the library function quot;import canquot; in Python(如何在Python中导入库函数IMPORT CANQUOT;)
本文介绍了如何在Python中导入库函数&IMPORT CAN";的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Ubuntu。我想要向总线发送垃圾邮件,并使用Wireshark查看数据包。我试图运行如下所示的Python代码,但它抛出了以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'can'
我的代码:
import time, can
bustype = 'socketcan'
channel = 'vcan0'
def producer(id):
# :param id: Spam the bus with messages including the data id.
bus = can.interface.Bus(channel=channel, bustype=bustype)
for i in range(10):
msg = can.Message(arbitration_id=0xc0ffee, data=[id, i, 0, 1, 3, 1, 4, 1], extended_id=False)
bus.send(msg)
# Issue #3: Need to keep running to ensure the writing threads stay alive.
time.sleep(1)
producer(10)
推荐答案
Ubuntu18.04及更高版本
在Ubuntu 18.04及更高版本中,默认的Ubuntu存储库提供了python-can和python3-can。打开终端并输入:
sudo apt update
sudo apt install python3-can # for Python 3.x
或
sudo apt update
sudo apt install python python-can # for Python 2.x
若要安装Canard(用于与控制器区域网络(CAN)交互的库),您必须使用pip。
python3 -m pip install --user CANard # for Python 3.x
或
python -m pip install --user CANard # for Python 2.x
这篇关于如何在Python中导入库函数&IMPORT CAN";的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在Python中导入库函数&IMPORT CAN";


基础教程推荐
猜你喜欢
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 包装空间模型 2022-01-01