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

How to install discid via python pip




discid - Python binding of Libdiscid, it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.2
- Topic :: Multimedia
- Topic :: Multimedia :: Sound/Audio
- Topic :: Multimedia :: Sound/Audio :: CD Audio
- Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Ripping

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



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_discid_env

- Active the virtual environment

test_discid_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_discid_env

- Active the virtual environment

source test_discid_env/bin/active


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

To install discid on Windows(CMD):

py -m pip install discid

To install discid on Unix/macOs:

pip install discid


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

Example:

pip install discid==0.1.0


Please see the version list below table:

VersionReleased dateCommand
discid 1.2.02019-02-23T11:16:55Windows:

py -m pip install discid==1.2.0

Unix/macOs:

pip install discid==1.2.0

discid 1.1.12017-01-29T12:05:38Windows:

py -m pip install discid==1.1.1

Unix/macOs:

pip install discid==1.1.1

discid 1.1.02013-10-09T20:23:43Windows:

py -m pip install discid==1.1.0

Unix/macOs:

pip install discid==1.1.0

discid 1.0.32013-10-06T10:06:35Windows:

py -m pip install discid==1.0.3

Unix/macOs:

pip install discid==1.0.3

discid 1.0.22013-06-27T14:45:12Windows:

py -m pip install discid==1.0.2

Unix/macOs:

pip install discid==1.0.2

discid 1.0.02013-06-25T17:08:06Windows:

py -m pip install discid==1.0.0

Unix/macOs:

pip install discid==1.0.0

discid 0.5.02013-04-26T22:25:35Windows:

py -m pip install discid==0.5.0

Unix/macOs:

pip install discid==0.5.0

discid 0.4.02013-04-09T17:50:14Windows:

py -m pip install discid==0.4.0

Unix/macOs:

pip install discid==0.4.0

discid 0.3.02013-03-11T15:06:34Windows:

py -m pip install discid==0.3.0

Unix/macOs:

pip install discid==0.3.0

discid 0.2.12013-01-30T16:52:50Windows:

py -m pip install discid==0.2.1

Unix/macOs:

pip install discid==0.2.1

discid 0.2.02013-01-30T13:05:26Windows:

py -m pip install discid==0.2.0

Unix/macOs:

pip install discid==0.2.0

discid 0.1.02013-01-12T18:13:42Windows:

py -m pip install discid==0.1.0

Unix/macOs:

pip install discid==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_discid_downloaded_file>

On Unix/macOs:

pip install <path_to_discid_downloaded_file>


List distribution:

- discid-0.1.0.tar.gz
- discid-0.2.0.tar.gz
- discid-0.2.1.tar.gz
- discid-0.3.0.tar.gz
- discid-0.4.0.tar.gz
- discid-0.5.0.tar.gz
- discid-1.0.0.tar.gz
- discid-1.0.2.tar.gz
- discid-1.0.3.tar.gz
- discid-1.1.0.tar.gz
- discid-1.1.1.tar.gz
- discid-1.2.0.tar.gz


Project link:

- Homepage