> For the complete documentation index, see [llms.txt](https://tk233.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tk233.gitbook.io/notes/risc-v-soc/getting-started-with-zephyr/getting-start-with-zephyr-on-risc-v-system-windows.md).

# Getting Start with Zephyr on RISC-V System - Windows

```powershell
python -m venv .\.venv\
```

```powershell
.\.venv\Scripts\Activate.ps1
```

```powershell
pip install west
```

Create project

```powershell
west init zephyrproject
cd .\zephyrproject\
west update
```

When doing this, make sure VSCode is not opened. <https://github.com/zephyrproject-rtos/west/issues/558#issuecomment-1006077681>

```powershell
west zephyr-export
```
