This pulls in Drake and builds it from source via Bazel's module mechanism.
For an introduction to Bazel, refer to Getting Started with Bazel.
First, run the install_prereqs script to download
the Drake source to drake/ (from the current directory).
This also runs Drake's setup script to install the required Ubuntu packages:
setup/install_prereqsAdditionally, if you don't already have bazel or bazelisk installed, then
install bazelisk:
setup/install_bazeliskThen, to build and test all apps:
bazel test //...As an example to run a binary directly:
bazel run //apps:simple_logging_exampleYou may also run the binary directly per the bazel-bin/... path that the
above command prints out; however, be aware that your working directories may
cause differences. This is important when using tools like
drake::FindResource / pydrake.common.FindResource.
You may generally want to stick to using bazel run when able.
To use Drake sources on disk instead of downloaded from github, pass the flag
--override_module=drake=/home/user/stuff/drake to bazel on the command line
or add a line such as the following to user.bazelrc in the current directory:
build --override_module=drake=/home/user/stuff/drakeBy default, Python 3 is the Python interpreter that Drake will use when built with Bazel. To see which Python versions are supported, see the supported configurations.