-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker instructions do not work #472
Comments
Hello @behrisch, thank you for reaching out and sorry for any problems you are having here. We have updated the docker images. There should be a v0.4.12 out now. Thank you for also for warning us about the docker instructions, we keep finding that our documentation quickly goes out of date. It will be updated with #474. In terms of context for the issue: Our use case for SUMO is for reinforcement learning so there are a number of unusual uses we have for SUMO. The first is that there is non-trivial vehicle motion. The second is that we like to take over existing vehicles in the traffic simulation after the simulation has warmed up, using more complex models to control vehicles that enter specific areas and releasing them when they exit. We originally ran into the issue around sumo 1.5 but it has been existing since well before then from my own knowledge. This is an another example crash from sumo 1.6.0+dfsg1-1 [origin: LP-PPA-sumo-stable] We have found that calling Our solution was to remove the vehicle and then re-add it back a step later. While this has worked for us in the past, the solution itself causes other problems mainly around handling the issue a vehicle disappearing for a step. Some changes attempting to address that issue resulted in a regression causing the bug to reassert itself. I could suggest closing eclipse-sumo/sumo#8125 until we get a better example to you. On our side we will attempt to create an example that quickly runs into the problem and then raise the issue again. |
@Adaickalavan We will talk about this tomorrow. |
Yes, I think this is a good idea. Please also try to use the latest SUMO if possible. |
The docker instructions in https://github.com/huawei-noah/SMARTS#using-docker have several issues:
docker run --rm -it -v $(PWD):/src -p 8081:8081 huaweinoah/smarts:v0.4.3-pre
givesPWD: command not found
docker run --rm -it -v $PWD:/src -p 8081:8081 huaweinoah/smarts:v0.4.3-pre
(no brackets around PWD) andscl envision start -s ./scenarios -p 8081 &
givesbash: scl: command not found
docker run --rm -it -v $PWD:/src -p 8081:8081 huaweinoah/smarts:v0.4.9
andscl envision start -s ./scenarios -p 8081 &
givesThe text was updated successfully, but these errors were encountered: