diff --git a/static/build.html b/static/build.html index 5fb58a8a..ff62d0ec 100644 --- a/static/build.html +++ b/static/build.html @@ -250,6 +250,7 @@
Additional dependencies for extracting vendor files with adevtool:
Optional
+ +Run the following additional commands once to create a working + environment if your Linux distribution (such as Debian bookworm) doesn't + have the Protobuf library for Python 3 package version (5.)27.2 or later. + This installs the latest library version in a Python 3 virtual + environment.
+ +python3 -m venv venv +source venv/bin/activate +pip install protobuf +deactivate+
Optional
+ +If you have installed the Protobuf library in the Python 3 virtual + environment, activate the environment:
+ +source venv/bin/activate+
Download, extract and prepare the vendor files:
adevtool generate-all -d PIXEL_CODENAME
Replace PIXEL_CODENAME
with Pixel device codename, which is the same as build target name.
Optional
+ +If you have installed the Protobuf library in the Python 3 virtual + environment, deactivate the environment:
+ +deactivate+