Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
Signed-off-by: JeffMboya <[email protected]>
  • Loading branch information
JeffMboya committed Jan 7, 2025
1 parent 070361d commit 2a9e74d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
29 changes: 22 additions & 7 deletions docs/WAMR-Zephyr.md → docs/zephyr.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Install Dependencies on your development machine

Update your system:
Update your system. For debian based systems you can use the following command:

```bash
sudo apt update
Expand Down Expand Up @@ -32,23 +32,38 @@ Ensure versions meet the minimum requirements: CMake 3.20.5, Python 3.10, and De

### Get Zephyr and Python Dependencies on your development machine

Create a Zephyr workspace and clone the repository:
Install Python venv package::

```bash
west init ~/zephyrproject
cd ~/zephyrproject
west update
sudo apt install python3-venv
```

Set up a Python virtual environment:
Create a new virtual environment:

```bash
sudo apt install python3-venv
python3 -m venv ~/zephyrproject/.venv
```

Activate the virtual environment:

```bash
source ~/zephyrproject/.venv/bin/activate
```

Install west:

```bash
pip install west
```

Create a Zephyr workspace and clone the repository:

```bash
west init ~/zephyrproject
cd ~/zephyrproject
west update
```

Export Zephyr CMake package:

```bash
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ nav:
- Manager: manager.md
- Proplet: proplet.md
- Developer's Guide: developer-guide.md
- Zephyr: zephyr.md

0 comments on commit 2a9e74d

Please sign in to comment.