From 37fcdc4d8933525bb3f390ef28c6256edd84a394 Mon Sep 17 00:00:00 2001 From: jbruce12000 Date: Wed, 16 Nov 2022 18:51:50 -0500 Subject: [PATCH] change install instructions --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 2fddcc9..694f0e6 100644 --- a/README.md +++ b/README.md @@ -65,14 +65,11 @@ Download [Raspberry PI OS](https://www.raspberrypi.org/software/). Use Rasberry $ sudo apt-get update $ sudo apt-get dist-upgrade - $ sudo apt-get install python3-dev python3-virtualenv libevent-dev virtualenv $ git clone https://github.com/jbruce12000/kiln-controller $ cd kiln-controller - $ virtualenv -p python3 venv + $ python3 -m venv venv $ source venv/bin/activate - $ export CFLAGS=-fcommon - $ pip3 install --upgrade setuptools - $ pip3 install greenlet bottle gevent gevent-websocket + $ pip install -r requirements.txt *Note: The above steps work on ubuntu if you prefer* @@ -80,14 +77,6 @@ Download [Raspberry PI OS](https://www.raspberrypi.org/software/). Use Rasberry If you're done playing around with simulations and want to deploy the code on a Raspberry PI to control a kiln, you'll need to do this in addition to the stuff listed above: - $ cd kiln-controller - $ virtualenv -p python3 venv - $ source venv/bin/activate - $ export CFLAGS=-fcommon - $ pip3 install -r requirements.txt - -### Enable SPI - $ sudo raspi-config interfacing options -> SPI -> Select Yes to enable select reboot