From 199a2736a554f0ffe775949798a8351dfe73e9e2 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Mon, 28 Oct 2024 11:20:39 +0100 Subject: [PATCH] Fix: document how to use Python's virtual environments for building OPCUA client gui: (#30) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b82c506..9c21c51 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,8 @@ $ cat /dev/ttyACM0 ```bash cd /tmp git clone https://github.com/FreeOpcUa/opcua-client-gui && cd opcua-client-gui +python -m venv .venv +source .venv/bin/activate python3 -m pip install --upgrade pyopenssl python3 -m pip install --upgrade . ```