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

How to install youterm via python pip




youterm - CLI tool to search for YouTube videos and play selected video/audio via MPV, it belongs to Classifiers:

- Environment :: Console
- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Natural Language :: English
- Operating System :: POSIX
- Topic :: Multimedia
- Topic :: Multimedia :: Sound/Audio
- Topic :: Multimedia :: Video

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



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_youterm_env

- Active the virtual environment

test_youterm_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_youterm_env

- Active the virtual environment

source test_youterm_env/bin/active


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

To install youterm on Windows(CMD):

py -m pip install youterm

To install youterm on Unix/macOs:

pip install youterm


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

Example:

pip install youterm==0.0.4.post2


Please see the version list below table:

VersionReleased dateCommand
youterm 0.2.02022-05-02T18:45:50Windows:

py -m pip install youterm==0.2.0

Unix/macOs:

pip install youterm==0.2.0

youterm 0.1.1.post12022-04-21T19:52:45Windows:

py -m pip install youterm==0.1.1.post1

Unix/macOs:

pip install youterm==0.1.1.post1

youterm 0.1.12022-04-20T20:32:05Windows:

py -m pip install youterm==0.1.1

Unix/macOs:

pip install youterm==0.1.1

youterm 0.1.02022-04-20T19:45:26Windows:

py -m pip install youterm==0.1.0

Unix/macOs:

pip install youterm==0.1.0

youterm 0.0.4.post32022-04-17T16:58:31Windows:

py -m pip install youterm==0.0.4.post3

Unix/macOs:

pip install youterm==0.0.4.post3

youterm 0.0.4.post22022-04-14T09:16:56Windows:

py -m pip install youterm==0.0.4.post2

Unix/macOs:

pip install youterm==0.0.4.post2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_youterm_downloaded_file>

On Unix/macOs:

pip install <path_to_youterm_downloaded_file>


List distribution:


Project link:

- Homepage
- Bug Tracker