运行$python scripts/diff_drive.py --remote http://10.100.82.30 --config=diff_vehicle
Detected running on rasberrypi. Only importing select modules.
Using TensorFlow backend.
Usage:
drive.py [--remote=<name>] [--config=<name>]
Options:
--remote=<name> recording session name
--config=<name> vehicle configuration file name (without extension)
[default: diff_vehicle]
我正在尝试制造差速式驴车。使用Raspberry Pi3,Picam和ADAFRUIT Motor HAT用于直流和步进电机。
答案 0 :(得分:0)
你在其中一个参数中缺少“=”。 python getopt接受name = value form中的值
尝试
$python scripts/diff_drive.py --remote=http://10.100.82.30 --config=diff_vehicle