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

How to install Orange via python pip




Orange - Orange, a component-based data mining framework., it belongs to Classifiers:

- Environment :: Plugins
- Environment :: X11 Applications :: Qt
- Intended Audience :: Education
- Topic :: Scientific/Engineering :: Artificial Intelligence
- Topic :: Scientific/Engineering :: Visualization

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



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_Orange_env

- Active the virtual environment

test_Orange_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_Orange_env

- Active the virtual environment

source test_Orange_env/bin/active


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

To install Orange on Windows(CMD):

py -m pip install Orange

To install Orange on Unix/macOs:

pip install Orange


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

Example:

pip install Orange==2.0.0b                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
Orange 2.7.82014-10-09T21:30:39Windows:

py -m pip install Orange==2.7.8

Unix/macOs:

pip install Orange==2.7.8

Orange 2.7.72014-10-09T19:15:21Windows:

py -m pip install Orange==2.7.7

Unix/macOs:

pip install Orange==2.7.7

Orange 2.7.52014-05-15T12:41:45Windows:

py -m pip install Orange==2.7.5

Unix/macOs:

pip install Orange==2.7.5

Orange 2.7.32014-05-08T12:47:08Windows:

py -m pip install Orange==2.7.3

Unix/macOs:

pip install Orange==2.7.3

Orange 2.7.22013-11-06T11:44:54Windows:

py -m pip install Orange==2.7.2

Unix/macOs:

pip install Orange==2.7.2

Orange 2.7.12013-09-09T10:30:38Windows:

py -m pip install Orange==2.7.1

Unix/macOs:

pip install Orange==2.7.1

Orange 2.72013-05-27T12:15:40Windows:

py -m pip install Orange==2.7

Unix/macOs:

pip install Orange==2.7

Orange 2.62013-01-15T12:13:56Windows:

py -m pip install Orange==2.6

Unix/macOs:

pip install Orange==2.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Orange_downloaded_file>

On Unix/macOs:

pip install <path_to_Orange_downloaded_file>


List distribution:

- Orange-2.0.0b.tar.gz
- Orange-2.0.1b.tar.gz
- Orange-2.5a1.tar.gz
- Orange-2.5a2.tar.gz
- Orange-2.5a4.tar.gz
- Orange-2.6.tar.gz
- Orange-2.7.tar.gz
- Orange-2.7.1-cp27-none-win32.whl
- Orange-2.7.1-py2.7-win32.egg
- Orange-2.7.1.tar.gz
- Orange-2.7.1.win32-py2.7.exe
- Orange-2.7.2-cp27-none-win32.whl
- Orange-2.7.2-py2.7-win32.egg
- Orange-2.7.2.tar.gz
- Orange-2.7.2.win32-py2.7.exe
- Orange-2.7.3-cp27-none-macosx_10_6_intel.whl
- Orange-2.7.3-cp27-none-win32.whl
- Orange-2.7.3-py2.7-win32.egg
- Orange-2.7.3.tar.gz
- Orange-2.7.3.win32-py2.7.exe
- Orange-2.7.3.zip
- Orange-2.7.5-cp27-none-macosx_10_6_intel.whl
- Orange-2.7.5-cp27-none-win32.whl
- Orange-2.7.5-py2.7-macosx-10.6-intel.egg
- Orange-2.7.5-py2.7-win32.egg
- Orange-2.7.5.tar.gz
- Orange-2.7.5.win32-py2.7.exe
- Orange-2.7.5.zip
- Orange-2.7.7.tar.gz
- Orange-2.7.8-cp27-none-macosx_10_6_intel.whl
- Orange-2.7.8-cp27-none-win32.whl
- Orange-2.7.8-py2.7-macosx-10.6-intel.egg
- Orange-2.7.8-py2.7-win32.egg
- Orange-2.7.8.tar.gz
- Orange-2.7.8.win32-py2.7.exe


Project link:

- Homepage
- Download