craftbeerpi4-pione/README.md
2021-01-26 19:55:55 +00:00

1.2 KiB

CraftBeerPi

Intro

CraftBeerPi is an open source brewing controller.

Installation

CraftBeerPi is python based and will require at last python 3.7.x
You can run CBPi 4.x on your Laptop. It's not required to use a Raspberry Pi.

Download an install Python 3.7 https://www.python.org/downloads/

Open a terminal window and run the following commands.

sudo python3 -m pip install cbpi
cbpi setup
cbpi start

The server is running under http://localhost:8000 by default.

Installation from GitHub

You can install the latest master version direclty from GitHub.

pip install https://github.com/Manuel83/craftbeerpi4/archive/master.zip

Create a Python Virtual Environment

The advantage of a virtual enviroment is to separate the python dependencies.
This is interesting for testing and to install several CBPi intances at the same time.

{% embed url="https://docs.python.org/3/library/venv.html" %}

python3 -m venv venv

source venv/bin/activate

{% embed url="https://www.facebook.com/groups/craftbeerpi" %}

{% embed url="https://www.youtube.com/channel/UCy47sYaG8YLwJWw2iY5_aNg" %}

{% embed url="http://web.craftbeerpi.com" %}