Fix errors

simplePCBuilding
2022-02-25 10:23:02 +01:00
parent e30ff4d9d3
commit 9fc9b1a20d

@@ -53,21 +53,21 @@ The process is similar on every operating system, though the installation proces
### GNU/Linux (most distros) ### GNU/Linux (most distros)
1. Python is preinstalled, though youll 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` 1. Python is preinstalled, though youll 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: 2. copy & paste the following commands into your terminal:
`pip install pyserial `pip install pyserial`
pip install kivy[base]` `pip install kivy[base]`
### MacOS ### 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. 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: 2. now open a terminal and type the following commands:
`pip install pyserial `pip install pyserial`
pip install kivy[base]` `pip install kivy[base]`
### Windows ### 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. 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 2. now open the command prompt (by typing „cmd“ into the search bar for example
3. type the following commands: 3. type the following commands:
`pip install pyserial `pip install pyserial`
pip install kivy[base]` `pip install kivy[base]`
## Cloning the repository ## 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 ## Launching the app
1. On MacOS and Linux use the following command to head into the folder you just cloned the repository into: 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. `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 folders 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` 2. You may start the app by typing `python3 biogascontrollerapp.py`