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

How to install colour via python pip




colour - converts and manipulates various color representation (HSL, RVB, web, X11, ...), it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Intended Audience :: Developers
- License :: OSI Approved
- License :: OSI Approved :: BSD License
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

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



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_colour_env

- Active the virtual environment

test_colour_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_colour_env

- Active the virtual environment

source test_colour_env/bin/active


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

To install colour on Windows(CMD):

py -m pip install colour

To install colour on Unix/macOs:

pip install colour


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

Example:

pip install colour==0.0.1


Please see the version list below table:

VersionReleased dateCommand
colour 0.1.52017-11-19T23:20:04Windows:

py -m pip install colour==0.1.5

Unix/macOs:

pip install colour==0.1.5

colour 0.1.42017-04-19T05:42:34Windows:

py -m pip install colour==0.1.4

Unix/macOs:

pip install colour==0.1.4

colour 0.1.32017-04-11T15:13:48Windows:

py -m pip install colour==0.1.3

Unix/macOs:

pip install colour==0.1.3

colour 0.1.22015-09-16T06:31:14Windows:

py -m pip install colour==0.1.2

Unix/macOs:

pip install colour==0.1.2

colour 0.1.12015-03-29T03:20:18Windows:

py -m pip install colour==0.1.1

Unix/macOs:

pip install colour==0.1.1

colour 0.0.62014-11-18T04:48:24Windows:

py -m pip install colour==0.0.6

Unix/macOs:

pip install colour==0.0.6

colour 0.0.52013-09-16T10:04:31Windows:

py -m pip install colour==0.0.5

Unix/macOs:

pip install colour==0.0.5

colour 0.0.42013-06-25T08:10:09Windows:

py -m pip install colour==0.0.4

Unix/macOs:

pip install colour==0.0.4

colour 0.0.32013-06-20T08:10:30Windows:

py -m pip install colour==0.0.3

Unix/macOs:

pip install colour==0.0.3

colour 0.0.22013-04-14T17:01:34Windows:

py -m pip install colour==0.0.2

Unix/macOs:

pip install colour==0.0.2

colour 0.0.12012-06-11T15:56:23Windows:

py -m pip install colour==0.0.1

Unix/macOs:

pip install colour==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_colour_downloaded_file>

On Unix/macOs:

pip install <path_to_colour_downloaded_file>


List distribution:

- colour-0.0.2.tar.gz
- colour-0.0.3.tar.gz
- colour-0.0.4.tar.gz
- colour-0.0.5.tar.gz
- colour-0.0.6.tar.gz
- colour-0.1.1.tar.gz
- colour-0.1.2.tar.gz
- colour-0.1.3-py2.py3-none-any.whl
- colour-0.1.3.tar.gz
- colour-0.1.4-py2.py3-none-any.whl
- colour-0.1.4.tar.gz
- colour-0.1.5-py2.py3-none-any.whl
- colour-0.1.5.tar.gz


Project link:

- Homepage