Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add updating zephyr dependencies #83808

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions doc/develop/beyond-GSG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,21 @@ the previous paragraph.
git pull
west update

Keeping Zephyr dependencies updated
===================================

To update the Python dependencies of the Zephyr project, you can use the
``west packages pip --install -- --upgrade`` command. This command will install or upgrade the
Python packages required by Zephyr and it's modules. This should be done after updating the Zephyr
project source code. Make sure to execute this command while the virtual environment, you use when
working with Zephyr, is active.

.. code-block:: console

# replace zephyrproject with the path you gave west init
cd zephyrproject/zephyr
west packages pip --install -- --upgrade

Export Zephyr CMake package
***************************

Expand Down
Loading