summaryrefslogtreecommitdiff
path: root/fw/README.md
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-02-14 08:57:16 +0100
committerxengineering <me@xengineering.eu>2025-02-14 08:57:16 +0100
commitee9106047c2128e8be07e754157c71c92a77a442 (patch)
tree6e98c7ce2485e3d4ca000019b86934b9d8a6cbb3 /fw/README.md
parent2885c22d8c07151e69aa9e8924b451c229f7ebbd (diff)
downloadiot-contact-ee9106047c2128e8be07e754157c71c92a77a442.tar
iot-contact-ee9106047c2128e8be07e754157c71c92a77a442.tar.zst
iot-contact-ee9106047c2128e8be07e754157c71c92a77a442.zip
fw: Do not track Python environment
Tracking the Python environment with specific dependency versions does not work well. Over time these versions disappear and are not anymore installable via pip. For now the alternative is to let the user setup the environment by interpreting the error output during builds. This is not convenient but the best which is currently possible. This furthermore allows to install Python dependencies via the Linux package manager. With that it is more ergonomic to build since the Python environment does not have to be sourced.
Diffstat (limited to 'fw/README.md')
-rw-r--r--fw/README.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/fw/README.md b/fw/README.md
index b0d2c46..8287fab 100644
--- a/fw/README.md
+++ b/fw/README.md
@@ -3,14 +3,6 @@
This is the firmware for iot-contact. It is based on the Zephyr real time
operating system [1].
-## Setup Python environment
-
-```
-python -m venv zephyrproject/.venv
-source zephyrproject/.venv/bin/activate
-pip install -r zephyrproject/requirements.txt
-```
-
## Build
```