我尝试执行以下命令:
/home/sumo-0.25.0/sumo/bin/netconvert --node-files=hello.nod.xml
--edge-files=hello.edg.xml --output-file=hello.net.xml但我知道这个错误:
Warning: Environment variable SUMO_HOME is not set, using built in type maps.
Error: Could not open nodes-file 'hello.nod.xml'.
Quitting (on error).发布于 2016-04-22 15:47:30
第一个只是警告。如果你想摆脱它,就做一些类似的事情
export SUMO_HOME=/home/sumo-0.25.0/sumo/在你的壳里。第二个是真正的错误。它表示无法访问所述文件。当前工作目录中的文件hello.nod.xml是否可读?
https://stackoverflow.com/questions/36793991
复制相似问题