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

How to install SimpleCV via python pip




SimpleCV - Make Computers See with SimpleCV, the Python Framework for Machine Vision, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Intended Audience :: Developers
- Intended Audience :: Manufacturing
- Intended Audience :: Science/Research
- License :: OSI Approved
- License :: OSI Approved :: BSD License
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: Capture
- Topic :: Multimedia :: Graphics :: Capture :: Digital Camera
- Topic :: Multimedia :: Graphics :: Graphics Conversion
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Image Recognition
- 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 SimpleCV to support your project or you get trouble as ModuleNotFoundError: No module named "SimpleCV" or ImportError: cannot import name "SimpleCV" in your project, let follow this tutorial to install SimpleCV



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_SimpleCV_env

- Active the virtual environment

test_SimpleCV_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_SimpleCV_env

- Active the virtual environment

source test_SimpleCV_env/bin/active


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

To install SimpleCV on Windows(CMD):

py -m pip install SimpleCV

To install SimpleCV on Unix/macOs:

pip install SimpleCV


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

Example:

pip install SimpleCV==0.5


Please see the version list below table:

VersionReleased dateCommand
SimpleCV 1.32012-08-10T20:42:41Windows:

py -m pip install SimpleCV==1.3

Unix/macOs:

pip install SimpleCV==1.3

SimpleCV 1.22011-11-16T03:48:12Windows:

py -m pip install SimpleCV==1.2

Unix/macOs:

pip install SimpleCV==1.2

SimpleCV 1.12011-08-05T17:59:53Windows:

py -m pip install SimpleCV==1.1

Unix/macOs:

pip install SimpleCV==1.1

SimpleCV 1.02011-06-20T18:57:35Windows:

py -m pip install SimpleCV==1.0

Unix/macOs:

pip install SimpleCV==1.0

SimpleCV 0.92011-06-13T14:24:19Windows:

py -m pip install SimpleCV==0.9

Unix/macOs:

pip install SimpleCV==0.9

SimpleCV 0.62011-06-02T15:20:24Windows:

py -m pip install SimpleCV==0.6

Unix/macOs:

pip install SimpleCV==0.6

SimpleCV 0.52011-05-24T17:01:16Windows:

py -m pip install SimpleCV==0.5

Unix/macOs:

pip install SimpleCV==0.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_SimpleCV_downloaded_file>

On Unix/macOs:

pip install <path_to_SimpleCV_downloaded_file>


List distribution:


Project link:

- Homepage
- Download