Python API for the SUMO environment of Plymouth Rd.
sumo
(currently private) including the configuration file to this project.traffic_envs.config.py
line 8,
os.environ["SUMO_HOME"] = "$your_sumo_path"
python env_test.py
Create new conda env (see more for conda cmds)::
conda create -n $env_name python=3.8
conda activate $env_name
Install dependents of the project:
pip install e .
I also put a max-pressure controller in this environment as an example controller. This controller uses the PyTorch package, you should download the PyTorch to use the max-weight controller.
The current max-weight controller is not tested yet. There might be some errors with it.
Directly download the sumo from the official website SUMO.
The official python api of SUMO is TraCI. It uses a TCP-based server for the user to interact with the simulation environment. However, this API is very slow there are too many vehicles in the network. Libsumo is almost the same with TraCI for the usage but is far more efficient than TraCI. However, the installment of Libsumo in Windows is not tested yet.
Replacing the libsumo with traci can speed up the communication between the simulation and the python project about 10 times (for this project).
Currently I only tried the installment in Linux system (Ubuntu). The installment document is available at Libsumo (Linux: Libsumo for Linux). Here is what I installed the libsumo, which is slightly different from the document provided in the previous link:
Create and activate a new conda env (see more for conda cmds):
conda create -n sumo python=3.8
conda activate sumo
Install all of the required tools and libraries
sudo apt-get install cmake python g++ libxerces-c-dev libfox-1.6-dev libgdal-dev libproj-dev libgl2ps-dev swig
Get the source code (there is no requirement for the path of this downloaded code, this is only used for this installing):
git clone --recursive https://github.com/eclipse/sumo
Build the SUMO binaries:
export SUMO_HOME="$PWD/sumo"
mkdir sumo/build/cmake-build && cd sumo/build/cmake-build
Then the following cmd is different from the docs provided in the official link (Libsumo for Linux). The reason is that here we choose to install the sumo to the created conda env:
cmake ../.. -DCMAKE_INSTALL_PREFIX=$env_path
where $env_path
is the path to the created conda env (usually ~/Anaconda/envs/$env_name
).
Finally, run the following cmds:
make -j$(nproc)
make install
To verify the installment:
python
import traci
import libsumo