From 34d55808f77653619a0e0aacf30bb7b3a51a7b4b Mon Sep 17 00:00:00 2001 From: jbruce Date: Mon, 29 Nov 2021 08:43:26 -0500 Subject: [PATCH] - RPI.GPio will not install with pip, but works fine with pip3 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2edd816..7d74340 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ Download [Raspberry PI OS](https://www.raspberrypi.org/software/). Use Rasberry $ cd kiln-controller $ virtualenv -p python3 venv $ source venv/bin/activate - $ pip install --upgrade setuptools - $ pip install greenlet bottle gevent gevent-websocket + $ pip3 install --upgrade setuptools + $ pip3 install greenlet bottle gevent gevent-websocket *Note: The above steps work on ubuntu if you prefer* @@ -78,7 +78,7 @@ If you want to deploy the code on a PI for production: $ cd kiln-controller $ virtualenv -p python3 venv $ source venv/bin/activate - $ pip install -r requirements.txt + $ pip3 install -r requirements.txt ## Configuration