Skip to content

rikkarth/rmvdl

Repository files navigation

Creating a Binary with PyInstaller

Follow these steps to create a standalone executable from your Python script using PyInstaller.

1. Install PyInstaller

pip install pyinstaller

2. Navigate to Your Script's Directory

cd /path/to/your/script

3. Create the Executable

Replace your_script.py with your script's filename:

pyinstaller --onefile your_script.py
  • The --onefile flag bundles everything into a single executable.

4. Find Your Binary

After building, the executable will be in the dist folder:

dist/your_script

5. Run the Binary

./dist/your_script

For more options, see the PyInstaller documentation.

About

A tool to download video s from X by supplying the URL of the post containing the video.

Topics

Resources

Stars

Watchers

Forks

Languages