Installation
Install from Docker
The fastest way to try vrp solver on your environment is to use public docker
image from Github Container Registry
(not performance optimized):
docker run -it -v $(pwd):/repo --name vrp-cli --rm ghcr.io/reinterpretcat/vrp/vrp-cli:1.7.4
Install from source
VRP solver is built in Rust. You would need to install cargo
to built it:
cargo build --release
Built binaries can be found in the ./target/release
directory.
Install from Cargo
You can install vrp solver directly with cargo install
:
cargo install vrp-cli
Ensure that your $PATH
is properly configured to source the Crates binaries, and then run solver using the vrp-cli
command.