diff --git a/docs/_docs/00-Updating-from-older-version.md b/docs/_docs/00-Updating-from-older-version.md
index 3e5ae3e..e05d6ea 100644
--- a/docs/_docs/00-Updating-from-older-version.md
+++ b/docs/_docs/00-Updating-from-older-version.md
@@ -2,12 +2,21 @@
name: Updating from older version
anchor: updating-from-older-version
toc:
- - name: Update WooferBot
- anchor: update-wooferbot
+ - name: Update WooferBot on windows
+ anchor: update-wooferbot-on-windows
+ - name: Update WooferBot on linux
+ anchor: update-wooferbot-on-linux
---
This section explains how to update WooferBot to newest version.
-### Update WooferBot
+### Update WooferBot on windows
1. Download and extract latest WooferBot release over previous version.
2. Start wooferbot_cli.exe and close it after startup (This will add all new parameters into your configuration file and update any changes made between versions).
3. Update your configuration as needed to use new features.
+
+### Update WooferBot on linux
+1. Download and extract latest WooferBot release over previous version.
+2. Go to wooferbot root directory
+3. Install dependencies `python3 -m pipenv install`
+4. Start `python3 -m pipenv run python3 wooferbot.py` and close it after startup (This will add all new parameters into your configuration file and update any changes made between versions).
+5. Update your configuration as needed to use new features.
diff --git a/docs/_docs/01-Installation-and-use.md b/docs/_docs/01-Installation-and-use.md
index 148cb46..dd6997e 100644
--- a/docs/_docs/01-Installation-and-use.md
+++ b/docs/_docs/01-Installation-and-use.md
@@ -2,8 +2,10 @@
name: Installation and use
anchor: installation-and-use
toc:
- - name: Download and prepare files
- anchor: download-and-prepare-files
+ - name: Download and prepare files on windows
+ anchor: download-and-prepare-files-on-windows
+ - name: Download and prepare files on linux
+ anchor: download-and-prepare-files-on-linux
- name: Configure your login information
anchor: configure-your-login-information
- name: Add overlay
@@ -13,10 +15,22 @@ toc:
---
This section explains installation process, broadcasting software setup and first run.
-### Download and prepare files
+### Download and prepare files on windows
1. Download and extract latest WooferBot release.
2. Start WooferBot using wooferbot_cli.exe to create a default configuration file.
+### Download and prepare files on linux
+WooferBot is developed using Python 3.8. It was confirmed to work on Python 3.5.
+1. Install `python3, python3-pip`
+2. Install pipenv `python3 -m pip install pipenv`
+3. Download and extract latest WooferBot release.
+4. Go to wooferbot root directory
+5. Install dependencies `python3 -m pipenv install`
+6. Start WooferBot using `python3 -m pipenv run python3 wooferbot.py` to create a default configuration file.
+
+Note: Commands based on Ubuntu, may be different on other distributions.
+Note: You can create a shell file run wooferbot `python3 -m pipenv run python3 wooferbot.py`.
+
### Configure your login information
Edit "settings.json" file and change login information for your twitch.tv account. These parameters are **mandatory** for bot to work.
```
diff --git a/docs/_docs/90-Developing-wooferbot.md b/docs/_docs/90-Developing-wooferbot.md
index 5b85a91..0408b8d 100644
--- a/docs/_docs/90-Developing-wooferbot.md
+++ b/docs/_docs/90-Developing-wooferbot.md
@@ -18,5 +18,4 @@ WooferBot is developed using Python 3.8. It was confirmed to work on Python 3.5.
### Building from source
-Windows: Execute `build.cmd`
-Linux: Execute `build.sh`
+Windows only: Execute `build.cmd`