Skip to content

Instantly share code, notes, and snippets.

@ntavish
Created April 10, 2019 19:25
Show Gist options
  • Save ntavish/1cc9287e6a3b93e9d88da99a4bd5d91a to your computer and use it in GitHub Desktop.
Save ntavish/1cc9287e6a3b93e9d88da99a4bd5d91a to your computer and use it in GitHub Desktop.
zephyr install summary
1. Install 'west':
pip3 install --user west
2. Clone zephyr repos with:
west init zephyrproject
3. Install python dependencies:
pip3 install --user -r zephyr/scripts/requirements.txt
4. Install Zephyr SDK:
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.10.0/zephyr-sdk-0.10.0-setup.run
sh zephyr-sdk-0.10.0-setup.run
5. Create ~/.zephyrrc with the following lines:
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
export ZEPHYR_SDK_INSTALL_DIR=/opt/zephyr-sdk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment