Go to one directory as your root, eg, $HOME/Dev/Sifli
# create a root directory of your workspace
mkdir workspace
cd workspace
Please refer to official [zephyr document](https://docs.zephyrproject.org/latest/develop/getting_started/index.html) for detailed installation instructions
python -m venv .venv
. .venv/bin/activate
pip install west
west init -m https://github.com/iotpi/sifli-app-template.git
west update
west zephyr-export
west packages pip --install
# install zephyr sdk if you didn't yet
west sdk install -t arm-zephyr-eabi
west build -p always -b em-lb525 zephyr/samples/hello_world/