From d65cfeaf3e085fad1acf004ecadde0f83f293b1f Mon Sep 17 00:00:00 2001
From: 9R <git@9-r.net>
Date: Mon, 5 Jun 2023 22:38:07 +0200
Subject: [PATCH] sim: add venv howto to README and note about incompatible
 python version

---
 sim/README.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/sim/README.md b/sim/README.md
index 22271a26c9..71970cc15d 100644
--- a/sim/README.md
+++ b/sim/README.md
@@ -20,6 +20,17 @@ If not using nix-shell, you'll need Python3 with the following libraries:
 
 All of these should be available in PyPI.
 
+Installing in a venv
+---
+
+```
+python -m venv venv
+source venv/bin/activate
+pip install wasmer wasmer-compiler-cranelift pygame
+```
+
+Note: The simulator currently does no work with python3.11. Make sure to use python ≤3.10.
+
 Running
 ---
 
-- 
GitLab