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

How to install yewtube via python pip




yewtube - A Terminal based YouTube player and downloader. No Youtube API key required. Forked from mps-youtube, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Environment :: MacOS X
- Environment :: Win32 (MS Windows)
- Intended Audience :: End Users/Desktop
- Operating System :: MacOS
- Operating System :: Microsoft :: Windows
- Operating System :: Microsoft :: Windows :: Windows XP
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Multimedia
- Topic :: Multimedia :: Sound/Audio
- Topic :: Multimedia :: Sound/Audio :: Players
- Topic :: Multimedia :: Video
- Topic :: Utilities

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



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_yewtube_env

- Active the virtual environment

test_yewtube_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_yewtube_env

- Active the virtual environment

source test_yewtube_env/bin/active


Step 2: OK, now, let flow below content to start the installation yewtube

To install yewtube on Windows(CMD):

py -m pip install yewtube

To install yewtube on Unix/macOs:

pip install yewtube


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

Example:

pip install yewtube==1.1.2


Please see the version list below table:

VersionReleased dateCommand
yewtube 2.8.42022-05-05T02:29:40Windows:

py -m pip install yewtube==2.8.4

Unix/macOs:

pip install yewtube==2.8.4

yewtube 2.8.32022-04-25T16:06:40Windows:

py -m pip install yewtube==2.8.3

Unix/macOs:

pip install yewtube==2.8.3

yewtube 2.8.22022-03-17T17:46:18Windows:

py -m pip install yewtube==2.8.2

Unix/macOs:

pip install yewtube==2.8.2

yewtube 2.8.12022-03-08T09:04:57Windows:

py -m pip install yewtube==2.8.1

Unix/macOs:

pip install yewtube==2.8.1

yewtube 2.8.02022-02-28T09:07:27Windows:

py -m pip install yewtube==2.8.0

Unix/macOs:

pip install yewtube==2.8.0

yewtube 2.7.02022-02-19T11:56:10Windows:

py -m pip install yewtube==2.7.0

Unix/macOs:

pip install yewtube==2.7.0

yewtube 2.6.92022-02-19T08:50:12Windows:

py -m pip install yewtube==2.6.9

Unix/macOs:

pip install yewtube==2.6.9

yewtube 2.6.82022-02-19T07:37:27Windows:

py -m pip install yewtube==2.6.8

Unix/macOs:

pip install yewtube==2.6.8

yewtube 2.6.72022-02-19T07:16:55Windows:

py -m pip install yewtube==2.6.7

Unix/macOs:

pip install yewtube==2.6.7

yewtube 2.6.62022-02-18T11:34:06Windows:

py -m pip install yewtube==2.6.6

Unix/macOs:

pip install yewtube==2.6.6

yewtube 2.6.52022-02-17T06:36:46Windows:

py -m pip install yewtube==2.6.5

Unix/macOs:

pip install yewtube==2.6.5

yewtube 2.6.42022-02-16T17:43:57Windows:

py -m pip install yewtube==2.6.4

Unix/macOs:

pip install yewtube==2.6.4

yewtube 2.6.32022-02-16T17:39:31Windows:

py -m pip install yewtube==2.6.3

Unix/macOs:

pip install yewtube==2.6.3

yewtube 2.6.22022-02-16T17:19:15Windows:

py -m pip install yewtube==2.6.2

Unix/macOs:

pip install yewtube==2.6.2

yewtube 2.0.12022-02-14T11:36:37Windows:

py -m pip install yewtube==2.0.1

Unix/macOs:

pip install yewtube==2.0.1

yewtube 1.1.42022-02-10T19:06:56Windows:

py -m pip install yewtube==1.1.4

Unix/macOs:

pip install yewtube==1.1.4

yewtube 1.1.32022-02-08T08:08:53Windows:

py -m pip install yewtube==1.1.3

Unix/macOs:

pip install yewtube==1.1.3

yewtube 1.1.22022-02-06T10:23:49Windows:

py -m pip install yewtube==1.1.2

Unix/macOs:

pip install yewtube==1.1.2


Step 4: Otherwise, you can install yewtube from local archives:

Download the distribution file from yewtube-2.8.4.tar.gz or the specific yewtube version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_yewtube_downloaded_file>

On Unix/macOs:

pip install <path_to_yewtube_downloaded_file>


List distribution:


Project link:

- Homepage
- Download