Skip to content

Commit 82969fe

Browse files
committed
2 parents febdef7 + 88d6d3c commit 82969fe

File tree

1 file changed

+11
-31
lines changed

1 file changed

+11
-31
lines changed

README.md

Lines changed: 11 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,45 +3,25 @@
33
A Simple Python YouTube Downloader **(Educational Purposes Only)**
44

55
Paste these into your terminal & enjoy!
6-
7-
### On Android (Termux) :
86
```
9-
pkg install git python;
10-
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
11-
cd PythonYoutubeDownloader;
12-
pip install -r requirements.txt;
7+
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git
8+
cd PythonYoutubeDownloader
9+
pip install -r requirements.txt
1310
python downloader.py
1411
```
1512

16-
### On Windows :
17-
```
18-
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
19-
cd PythonYoutubeDownloader;
20-
pip install -r requirements.txt;
21-
python downloader.py
22-
```
23-
24-
### On Linux :
25-
```
26-
sudo apt install git python3-pip;
27-
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
28-
cd PythonYoutubeDownloader;
29-
pip3 install -r requirements.txt;
30-
python3 downloader.py # run the script
31-
```
32-
### On Mac :
33-
```
34-
brew install git python3;
35-
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
36-
cd PythonYoutubeDownloader;
37-
pip3 install -r requirements.txt;
38-
python3 downloader.py #
39-
```
4013
## Fixing Errors:
4114
If you are having the error that says :
4215
`FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'` while running the code,
4316
just
4417
```
4518
brew install ffmpeg
46-
```
19+
```
20+
or
21+
```
22+
choco install ffmpeg
23+
```
4724
in your terminal.
25+
26+
## Disclaimer
27+
This repository is intended for educational and personal use only. The use of this repository for any commercial or illegal purposes is strictly prohibited. The repository owner does not endorse or encourage the downloading or sharing of copyrighted material without permission. The repository owner is not responsible for any misuse of the software or any legal consequences that may arise from such misuse

0 commit comments

Comments
 (0)