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

How to install ncmpy via python pip




ncmpy - a curses mpd client;, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Multimedia

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



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_ncmpy_env

- Active the virtual environment

test_ncmpy_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_ncmpy_env

- Active the virtual environment

source test_ncmpy_env/bin/active


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

To install ncmpy on Windows(CMD):

py -m pip install ncmpy

To install ncmpy on Unix/macOs:

pip install ncmpy


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

Example:

pip install ncmpy==1.4.0


Please see the version list below table:

VersionReleased dateCommand
ncmpy 1.5.72021-01-08T09:22:05Windows:

py -m pip install ncmpy==1.5.7

Unix/macOs:

pip install ncmpy==1.5.7

ncmpy 1.5.62019-07-22T03:54:07Windows:

py -m pip install ncmpy==1.5.6

Unix/macOs:

pip install ncmpy==1.5.6

ncmpy 1.5.42018-12-11T02:32:25Windows:

py -m pip install ncmpy==1.5.4

Unix/macOs:

pip install ncmpy==1.5.4

ncmpy 1.5.22018-11-30T11:30:00Windows:

py -m pip install ncmpy==1.5.2

Unix/macOs:

pip install ncmpy==1.5.2

ncmpy 1.5.12018-11-27T17:03:24Windows:

py -m pip install ncmpy==1.5.1

Unix/macOs:

pip install ncmpy==1.5.1

ncmpy 1.5.02018-11-27T16:58:46Windows:

py -m pip install ncmpy==1.5.0

Unix/macOs:

pip install ncmpy==1.5.0

ncmpy 1.4.02018-10-12T15:11:50Windows:

py -m pip install ncmpy==1.4.0

Unix/macOs:

pip install ncmpy==1.4.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ncmpy_downloaded_file>

On Unix/macOs:

pip install <path_to_ncmpy_downloaded_file>


List distribution:

- ncmpy-1.4.0.tar.gz
- ncmpy-1.5.0.tar.gz
- ncmpy-1.5.1.tar.gz
- ncmpy-1.5.2.tar.gz
- ncmpy-1.5.4.tar.gz
- ncmpy-1.5.6.tar.gz
- ncmpy-1.5.7.tar.gz


Project link:

- Homepage
- Bug Reports
- Source