This tutorial demonstrates how to use Bazel for managing AI/ML packages and dependencies in Python projects. The examples and code samples provided here complement the main presentation repository.
bazel-tutorial/ ├── MODULE.bazel # Bazel module configuration (replaces WORKSPACE) ├── MODULE.bazel.lock # Dependency lockfile (commit to git) ├── BUILD # Root BUILD file with Gazelle target ├── ...
Bazel, a tool used internally at Google to build software quickly, was made open-source back in March to advance its development. Google has now released Bazel under beta to allow engineers to build ...