Skip to content

Commit 0ac317e

Browse files
authored
Update README.md
1 parent 106f11e commit 0ac317e

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
11
# Python Youtube Downloader
2+
3+
Paste this into your terminal & enjoy!
4+
5+
### On Android (Termux) :
6+
```
7+
pkg install git python;
8+
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
9+
cd PythonYoutubeDownloader;
10+
pip install -r requirements.txt;
11+
python downloader.py
12+
```
13+
14+
### On Windows :
15+
```
16+
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
17+
cd PythonYoutubeDownloader;
18+
pip install -r requirements.txt;
19+
python downloader.py
20+
```
21+
22+
### On Linux :
23+
```
24+
sudo apt install git python3-pip;
25+
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
26+
cd PythonYoutubeDownloader;
27+
pip3 install -r requirements.txt;
28+
python3 downloader.py # run the script
29+
```
30+
### On Mac :
31+
```
32+
brew install git python3;
33+
git clone https://github.com/hansanaD/PythonYoutubeDownloader.git;
34+
cd PythonYoutubeDownloader;
35+
pip3 install -r requirements.txt;
36+
python3 downloader.py #
37+
```
38+
## Have a great day! 😄🎉

0 commit comments

Comments
 (0)