Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install yt-dlg via python pip




yt-dlg - Youtube Downloader GUI, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: MacOS X
- Environment :: MacOS X :: Cocoa
- Environment :: Win32 (MS Windows)
- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- License :: Public Domain
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.10
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Multimedia
- Topic :: Multimedia :: Video

When you know about this project and you want to new install yt-dlg to support your project or you get trouble as ModuleNotFoundError: No module named "yt-dlg" or ImportError: cannot import name "yt-dlg" in your project, let follow this tutorial to install yt-dlg



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_yt-dlg_env

- Active the virtual environment

test_yt-dlg_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_yt-dlg_env

- Active the virtual environment

source test_yt-dlg_env/bin/active


Step 2: OK, now, let flow below content to start the installation yt-dlg

To install yt-dlg on Windows(CMD):

py -m pip install yt-dlg

To install yt-dlg on Unix/macOs:

pip install yt-dlg


Step 3: If you want to install a specific yt-dlg version, add ==<yt-dlg version> to the end command line

Example:

pip install yt-dlg==1.2.1


Please see the version list below table:

VersionReleased dateCommand
yt-dlg 1.8.32022-01-18T15:07:29Windows:

py -m pip install yt-dlg==1.8.3

Unix/macOs:

pip install yt-dlg==1.8.3

yt-dlg 1.8.22021-12-07T04:52:11Windows:

py -m pip install yt-dlg==1.8.2

Unix/macOs:

pip install yt-dlg==1.8.2

yt-dlg 1.8.12021-11-08T06:15:11Windows:

py -m pip install yt-dlg==1.8.1

Unix/macOs:

pip install yt-dlg==1.8.1

yt-dlg 1.7.12021-09-16T22:02:23Windows:

py -m pip install yt-dlg==1.7.1

Unix/macOs:

pip install yt-dlg==1.7.1

yt-dlg 1.7.02021-06-30T19:49:25Windows:

py -m pip install yt-dlg==1.7.0

Unix/macOs:

pip install yt-dlg==1.7.0

yt-dlg 1.6.02021-06-03T17:38:41Windows:

py -m pip install yt-dlg==1.6.0

Unix/macOs:

pip install yt-dlg==1.6.0

yt-dlg 1.5.12021-05-17T07:38:15Windows:

py -m pip install yt-dlg==1.5.1

Unix/macOs:

pip install yt-dlg==1.5.1

yt-dlg 1.5.02021-05-17T04:48:11Windows:

py -m pip install yt-dlg==1.5.0

Unix/macOs:

pip install yt-dlg==1.5.0

yt-dlg 1.4.12021-05-13T02:11:25Windows:

py -m pip install yt-dlg==1.4.1

Unix/macOs:

pip install yt-dlg==1.4.1

yt-dlg 1.4.02021-05-08T16:06:15Windows:

py -m pip install yt-dlg==1.4.0

Unix/macOs:

pip install yt-dlg==1.4.0

yt-dlg 1.3.02021-04-28T14:54:11Windows:

py -m pip install yt-dlg==1.3.0

Unix/macOs:

pip install yt-dlg==1.3.0

yt-dlg 1.2.22021-04-22T05:13:44Windows:

py -m pip install yt-dlg==1.2.2

Unix/macOs:

pip install yt-dlg==1.2.2

yt-dlg 1.2.12021-04-22T03:51:14Windows:

py -m pip install yt-dlg==1.2.1

Unix/macOs:

pip install yt-dlg==1.2.1


Step 4: Otherwise, you can install yt-dlg from local archives:

Download the distribution file from yt_dlg-1.8.3.tar.gz or the specific yt-dlg version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_yt-dlg_downloaded_file>

On Unix/macOs:

pip install <path_to_yt-dlg_downloaded_file>


List distribution:


Project link:

- Homepage
- Download
- Funding
- Source
- Tracker