diff --git a/README.md b/README.md
index 266fee6..80efaaa 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
[](https://github.com/neosubhamoy/pytubepp/)
[](https://pypi.org/project/pytubepp/)
[](https://pypi.org/project/pytubepp/)
-[](https://www.python.org/downloads/)
+[](https://www.python.org/downloads/)
[](https://github.com/neosubhamoy/pytubepp/)
[](https://github.com/neosubhamoy/pytubepp/)
@@ -18,9 +18,12 @@
* Smart Stream Selection
* Highly Configurable and Many More 😉
-### **🧩 Dependencies**
+### **📎 Pre-Requirements**
+* [Python](https://www.python.org/downloads/) (>=3.8)
+* [FFmpeg](https://ffmpeg.org/)
+
+### **🧩 Python Dependencies**
* [pytubefix](https://pypi.org/project/pytubefix/)
-* [FFmpeg (Not Pre-Included)](https://ffmpeg.org/)
* [ffmpy](https://pypi.org/project/ffmpy/)
* [mutagen](https://pypi.org/project/mutagen/)
* [tabulate](https://pypi.org/project/tabulate/)
@@ -30,22 +33,28 @@
* [setuptools](https://pypi.org/project/setuptools/)
### **🛠️ Installation**
-You can install PytubePP in your system via PIP by simply running the below command
+1. Install Python and PIP
+ - Linux (Debian): Python is pre-installed install PIP using `sudo apt install python3-pip`
+ - Linux (Fedora): Python is pre-installed install PIP using `sudo dnf install python3-pip`
+ - Linux (Arch): Python is pre-installed install PIP using `sudo pacman -S python-pip`
+ - Windows (10/11): `winget install Python.Python.3.13`
+ - MacOS (using Homebrew): `brew install python`
+ - Android (using Termux): `pkg install python`
+2. Install FFmpeg
+ - Linux (Debian): `sudo apt install ffmpeg`
+ - Linux (Fedora): `sudo dnf install ffmpeg-free`
+ - Linux (Arch): `sudo pacman -S ffmpeg`
+ - Windows (10/11): `winget install ffmpeg`
+ - MacOS (using Homebrew): `brew install ffmpeg`
+ - Android (using Termux): `pkg install ffmpeg`
+3. Install PytubePP (using PIP)
```terminal
pip install pytubepp
```
-**IMPORTANT: Before installing PytubePP make sure FFmpeg is installed in your system and accesable via your cli interface (FFmpeg is Must Required as some of the core features of pytubePP relies on FFmpeg, but due to security reasons we can not ship it with the module)**
-
-**>> Install FFmpeg (If you haven't already!)**
-
-Linux (Ubuntu): `sudo apt install ffmpeg`
-Linux (Fedora): `sudo dnf install ffmpeg-free`
-Windows (10/11): `winget install ffmpeg`
-MacOS (using Homebrew): `brew install ffmpeg`
-Android (using Termux): `pkg install ffmpeg`
**NOTE: Always make sure 'PytubePP' and 'Pytubefix' is on the latest version to avoid issues (update them at least once a week) (Use the command below to update)**
+
```
pip install pytubefix pytubepp --upgrade
```