From 0e8b57d8a8af644cc44bc3f0f44ed78d409c834c Mon Sep 17 00:00:00 2001 From: Chris Woods <6069113+woodsmc@users.noreply.github.com> Date: Tue, 6 May 2025 23:32:43 -0400 Subject: [PATCH] More detail to python setup, and fixed small typo (#4247) --- language-bindings/python/wamr-api/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/language-bindings/python/wamr-api/README.md b/language-bindings/python/wamr-api/README.md index 38a440144..b2ef1e105 100644 --- a/language-bindings/python/wamr-api/README.md +++ b/language-bindings/python/wamr-api/README.md @@ -1,14 +1,17 @@ -# WARM API +# WAMR API -* **Notice**: The python package `wamr.wamrapi.wamr` need python >= `3.10`. +* **Notice**: The python package `wamr.wamrapi.wamr` requires a python version >= `3.10`. ## Setup ### Pre-requisites +#### Install requirements +Before proceeding it is necessary to make sure your Python environment is correctly configured. To do ths open a terminal session in this directory and perfom the following: -Install requirements, ```shell +python3 -m venv venv +source venv/bin/activate pip install -r requirements.txt ```