0

when I execute the command :

 sumo-launchd.py -vv-c /.../sumo-gui.exe 

I receive error:

Usage: sumo-launchd.py (options)
sumo-launchd.py: error: no such option: --

sorry but I'm not very good with these installations some help?

OMR
  • 11,736
  • 5
  • 20
  • 35

1 Answers1

0

Most likely you wanted to use arguments -vv -c ... instead of -vv-c .... Many argument parsers treat a sequence of individual characters as multiple single-letter arguments (in your case: -v, -v, --, and -c), which is why the argument parser gives this weird error.

Christoph Sommer
  • 6,893
  • 1
  • 17
  • 35