运行python scripts / diff_drive.py时出错 - 远程http://10.100.82.30 --config = diff_vehicle

时间:2017-07-08 10:57:05

标签: python raspberry-pi

运行$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用于直流和步进电机。

1 个答案:

答案 0 :(得分:0)

你在其中一个参数中缺少“=”。 python getopt接受name = value form中的值

尝试 $python scripts/diff_drive.py --remote=http://10.100.82.30 --config=diff_vehicle