Open In App

How to Install Orange Data Mining Tool on Linux?

Orange is a powerful platform to perform data analysis and visualization, see data flow and become more productive. It provides a clean, open-source platform. It was developed by The  University of Ljubljana under the GPLv3 license.

Steps of Installation

Step 1: First of all, we will install pip and other dependencies before installing Orange Tool.



sudo apt install build-essential python3-dev python3-pip

To verify the installation, run:



pip3 –version

Step 2: Now, install the orange tool.

pip3 install orange3

Note: This command will also install various machine learning libraries and PyQt5 that may cost you additional data. 

Using Orange Tool

Run the following command on the command-line:

python3 -m Orange.canvas

Orange Widgets

These are the building blocks of data workflows of the visual programming environment. We have the following widgets in orange categorized according to their functionality.

Data

These widgets read and display data. Some common examples are:

Visualize

These widgets visualize the given data through various graphs and bars. Some common examples are :

Model

These widgets apply machine learning algorithms to the given dataset(s). Some common examples are:

Evaluate

These widgets evaluate the result produced by the model widget. Some common examples are :

Unsupervised

These widgets process unsupervised data. Some common examples are :

Article Tags :