Initialize a Cargo project.
cargo new my_project
where my_project
is the name of our project.
Add Bevy to the project dependencies.
cd my_project
cargo add bevy
You should see the dependency in the end of Cargo.toml
file.
[dependencies]
bevy = "0.12.1"
Now, you are ready to exploit the power of Bevy.
➡️ Next: A Bevy Project That Does Nothing
📘 Back: Table of contents