- Windows + Linux:
- Download the executable file in releases.
- Run the file
- macOS (and any other OS that supports Python):
- Clone this repo
- Execute this command:
pip install -r requirements.txt
- Use
python3 main.py
to launch.
- This script supports start with arguments (arguments are Reddit post(s) ID/URL). By default if start without argument it'll ask you reddit post(s) URL/ID to download video(s).
- Clone the project
- Using Git
git clone /~https://github.com/teppyboy/PyRedditVidDL
cd PyRedditVidDL
- Using wget (Linux)
wget /~https://github.com/teppyboy/PyRedditVidDL/archive/master.zip -O PyRedditVidDL.zip
unzip PyRedditVidDL.zip
cd PyRedditVidDL
- Creating VENV (Optional, recommended)
- Windows (in cmd)
py -m venv venv
venv/Scripts/activate.bat
- Linux
python3 -m venv venv
venv/bin/activate
- Installing deps and compile
pip install -r requirements.txt
pyinstaller --onefile main.py
- This should create a file called main (with extensions) that is corresponding to your OS, and pyinstaller can only build file for the OS that executing it.