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

How to install youtube-dlc via python pip




youtube-dlc - Media downloader supporting various sites such as youtube, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- License :: Public Domain
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: IronPython
- Programming Language :: Python :: Implementation :: Jython
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Multimedia
- Topic :: Multimedia :: Video

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



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_youtube-dlc_env

- Active the virtual environment

test_youtube-dlc_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_youtube-dlc_env

- Active the virtual environment

source test_youtube-dlc_env/bin/active


Step 2: OK, now, let flow below content to start the installation youtube-dlc

To install youtube-dlc on Windows(CMD):

py -m pip install youtube-dlc

To install youtube-dlc on Unix/macOs:

pip install youtube-dlc


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

Example:

pip install youtube-dlc==2020.8.31


Please see the version list below table:

VersionReleased dateCommand
youtube-dlc 2020.11.11.post32020-11-11T14:36:30Windows:

py -m pip install youtube-dlc==2020.11.11.post3

Unix/macOs:

pip install youtube-dlc==2020.11.11.post3

youtube-dlc 2020.11.72020-11-07T16:22:52Windows:

py -m pip install youtube-dlc==2020.11.7

Unix/macOs:

pip install youtube-dlc==2020.11.7

youtube-dlc 2020.10.312020-10-31T08:36:08Windows:

py -m pip install youtube-dlc==2020.10.31

Unix/macOs:

pip install youtube-dlc==2020.10.31

youtube-dlc 2020.10.262020-10-26T03:44:24Windows:

py -m pip install youtube-dlc==2020.10.26

Unix/macOs:

pip install youtube-dlc==2020.10.26

youtube-dlc 2020.10.24.post62020-10-24T05:33:55Windows:

py -m pip install youtube-dlc==2020.10.24.post6

Unix/macOs:

pip install youtube-dlc==2020.10.24.post6

youtube-dlc 2020.10.92020-10-09T06:30:53Windows:

py -m pip install youtube-dlc==2020.10.9

Unix/macOs:

pip install youtube-dlc==2020.10.9

youtube-dlc 2020.9.302020-09-30T05:15:41Windows:

py -m pip install youtube-dlc==2020.9.30

Unix/macOs:

pip install youtube-dlc==2020.9.30

youtube-dlc 2020.9.23.post22020-09-23T03:17:15Windows:

py -m pip install youtube-dlc==2020.9.23.post2

Unix/macOs:

pip install youtube-dlc==2020.9.23.post2

youtube-dlc 2020.9.162020-09-16T12:23:12Windows:

py -m pip install youtube-dlc==2020.9.16

Unix/macOs:

pip install youtube-dlc==2020.9.16

youtube-dlc 2020.9.132020-09-13T13:56:52Windows:

py -m pip install youtube-dlc==2020.9.13

Unix/macOs:

pip install youtube-dlc==2020.9.13

youtube-dlc 2020.9.122020-09-12T04:34:12Windows:

py -m pip install youtube-dlc==2020.9.12

Unix/macOs:

pip install youtube-dlc==2020.9.12

youtube-dlc 2020.9.62020-09-06T05:40:13Windows:

py -m pip install youtube-dlc==2020.9.6

Unix/macOs:

pip install youtube-dlc==2020.9.6

youtube-dlc 2020.9.3.12020-09-03T15:17:39Windows:

py -m pip install youtube-dlc==2020.9.3.1

Unix/macOs:

pip install youtube-dlc==2020.9.3.1

youtube-dlc 2020.9.32020-09-03T03:56:39Windows:

py -m pip install youtube-dlc==2020.9.3

Unix/macOs:

pip install youtube-dlc==2020.9.3

youtube-dlc 2020.9.12020-08-31T22:50:27Windows:

py -m pip install youtube-dlc==2020.9.1

Unix/macOs:

pip install youtube-dlc==2020.9.1

youtube-dlc 2020.8.312020-08-31T20:17:29Windows:

py -m pip install youtube-dlc==2020.8.31

Unix/macOs:

pip install youtube-dlc==2020.8.31


Step 4: Otherwise, you can install youtube-dlc from local archives:

Download the distribution file from youtube_dlc-2020.11.11.post3.tar.gz or the specific youtube-dlc version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_youtube-dlc_downloaded_file>

On Unix/macOs:

pip install <path_to_youtube-dlc_downloaded_file>


List distribution:


Project link:

- Homepage