Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Problems with the netdiff tool in Sumo version 1.11.0

It seems that you have an outdated version of the module sumolib/options in your python load path which gets loaded by netdiff instead of the options module from version 1.11.0
You either need to remove the outdated version or ensure that the 1.11.0 version comes first in you python load path.
Adding this line to netdiff.py may help with locating the old version:

print("LOADPATH:", '\n'.join(sys.path))

Am Mo., 13. Dez. 2021 um 14:23 Uhr schrieb Louis Tümmler <l.tuemmler@xxxxxxxxxxxxxxxxxx>:

Hello everybody,

I have a question regarding the netdiff-tool. I used it with the sumo version 1.10.0 and it worked out well.

Now i have tried it the exact same way with the 1.11.0 version and i get the following answer:

 

C:\Sumo\test\2021-12-13-10-19-47>python %SUMO_HOME%\tools\net\netdiff.py osm.net.xml osmb.net.xml diff

Traceback (most recent call last):

  File "C:\Sumo\sumo-1.11.0\tools\net\netdiff.py", line 710, in <module>

    main()

  File "C:\Sumo\sumo-1.11.0\tools\net\netdiff.py", line 653, in main

    options = parse_args()

  File "C:\Sumo\sumo-1.11.0\tools\net\netdiff.py", line 502, in parse_args

   optParser.add_option("-v", "--verbose", action="">

AttributeError: 'ArgumentParser' object has no attribute 'add_option'

 

Does anyone have an idea what the problem/solution might be?

 

Thanks in Advance

Louis

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Back to the top