From 9fc9b1a20d5cc7bf447053ec84f6ebf3fc9aa2fa Mon Sep 17 00:00:00 2001 From: simplePCBuilding <98422316+simplePCBuilding@users.noreply.github.com> Date: Fri, 25 Feb 2022 10:23:02 +0100 Subject: [PATCH] Fix errors --- Install-and-run-the-program.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Install-and-run-the-program.md b/Install-and-run-the-program.md index 5437e3c..80c910b 100644 --- a/Install-and-run-the-program.md +++ b/Install-and-run-the-program.md @@ -53,21 +53,21 @@ The process is similar on every operating system, though the installation proces ### GNU/Linux (most distros) 1. Python is preinstalled, though you‘ll need to install pip on most distros. Use `sudo (your package manager name here, (apt-get for ubuntu / debian based distros; dnf for fedora and pacman for arch based)) install pip` 2. copy & paste the following commands into your terminal: -`pip install pyserial -pip install kivy[base]` +`pip install pyserial` +`pip install kivy[base]` ### MacOS 1. head to this link, install python and make sure you have pip selected: https://www.python.org/downloads/macos/ (be sure to download python 3.8, as newer versions may come in conflict with kivy. 2. now open a terminal and type the following commands: -`pip install pyserial -pip install kivy[base]` +`pip install pyserial` +`pip install kivy[base]` ### Windows 1. head to this link, install python and make sure you have pip selected: https://www.python.org/downloads/windows/ (be sure to download python 3.8 as newer versions may come in conflict with kivy. 2. now open the command prompt (by typing „cmd“ into the search bar for example 3. type the following commands: -`pip install pyserial -pip install kivy[base]` +`pip install pyserial` +`pip install kivy[base]` ## Cloning the repository @@ -79,5 +79,5 @@ Now that you have all of the dependencies installed on your system you may now c ## Launching the app 1. On MacOS and Linux use the following command to head into the folder you just cloned the repository into: `cd ./BiogasControllerApp`, press tab, then type `BiogasControllerApp` and press tab again. Finally, press enter. -On Windows open your Explorer, navigate into the users folder (it is located on your C drive) and click on the bar where you can find the path. Type in „cmd“ +On Windows open your Explorer, navigate into the users folder (it is located on your C drive), then into the BiogasControllerApp-main-Folder, then into BiogasControllerApp-V2.x (whereas x is to be replaced with whatever folder‘s in there with that structure). Then click on the bar where you can find the path. Type in „cmd“. 2. You may start the app by typing `python3 biogascontrollerapp.py`