Python NSIS Shell C Jupyter Notebook JavaScript
Latest commit 08b10bd Jan 8, 2018 @janezd janezd Merge pull request #2847 from ales-erjavec/fixes/widget-splitter-name
[FIX] OWWidget: Move 'splitter' to private members
Permalink
Failed to load latest commit information.
.ci_tools/appveyor appveyor: Test using scipy 1.0.0b1 openblas linked wheels Sep 27, 2017
.github MNT: GH issue template: mention addons' issue trackers Oct 11, 2017
.travis ENH: Add pandas_compat.table_from_frame(df) Dec 20, 2017
Orange Merge pull request #2847 from ales-erjavec/fixes/widget-splitter-name Jan 8, 2018
benchmark Remove some leftovers. Aug 26, 2016
conda-recipe conda_recipe: Add serverfiles dependency Sep 29, 2017
distribute setup.py: Install desktop file and icon on GNU/Linux/FreeBSD Apr 22, 2016
doc [FIX] Radviz: enable VizRank numeric color (class) Jan 8, 2018
scripts Fix start menu shortcut uninstall step Dec 19, 2017
tutorials Update learners.ipynb May 15, 2015
.codeclimate.yml Disable duplicate detection check Jul 14, 2017
.coveragerc travis: Include widgets in coverage Feb 13, 2017
.gitattributes Add line ending config. Sep 19, 2013
.gitignore Remove Orange.egg-info dir from .gitignore Jun 1, 2016
.scrutinizer.yml .scrutinizer.yml: Automated code reviews for Python Jul 16, 2015
.travis.yml travis: Add python3.6 to build matrix Sep 13, 2017
CHANGELOG.md Release 3.8.0 Dec 1, 2017
CONTRIBUTING.md contributing: mention split documentation Apr 27, 2017
LICENSE Purge Highcharts from Orange distribution May 19, 2017
MANIFEST.in Merge pull request #2761 from kernc/rm-plotutils Dec 8, 2017
README.md Add Gitter badge Jan 24, 2017
appveyor.yml ENH: Add pandas_compat.table_from_frame(df) Dec 20, 2017
codecov.yml Revert "Bottlechest, bottleneck" Jul 4, 2016
pylintrc lint: disable invalid-sequence-index check Jul 26, 2017
requirements-core.txt Update requirements-core.txt Oct 6, 2017
requirements-dev.txt setup.py: new subcommand: lint Apr 1, 2016
requirements-doc.txt MAINT: add PyQt5 to doc-building requirements Jul 7, 2017
requirements-gui.txt canvas/annotations: Add support for inline text markup editing Jun 27, 2017
requirements-opt.txt ENH: Add pandas_compat.table_from_frame(df) Dec 20, 2017
requirements-sql.txt sql: Add pymssql backend Oct 21, 2016
requirements.txt MAINT: add requirements.txt (core+dev) for RTFD.io May 6, 2016
setup.cfg setup: Fix setup.cfg Sep 2, 2015
setup.py Remove OWGeoMap, now in Orange3-Geo add-on Dec 8, 2017

README.md

Orange

Join the chat at https://gitter.im/biolab/orange3

build: passing codecov

Orange is a component-based data mining software. It includes a range of data visualization, exploration, preprocessing and modeling techniques. It can be used through a nice and intuitive user interface or, for more advanced users, as a module for the Python programming language.

This is a development version of Orange 3. The stable version 2.7 is still available (binaries and sources).

Installing

This version of Orange requires Python 3.4 or newer. To build it and install it in a development environment, run:

# Install some build requirements via your system's package manager
sudo apt-get install virtualenv git build-essential

# Also install Qt dependencies for the GUI
sudo apt-get install python3-pyqt4
# or if python version is >= 3.5
#  pip install pyqt5 

# Create a separate Python environment for Orange and its dependencies ...
virtualenv --python=python3 --system-site-packages orange3venv
# ... and make it the active one
source orange3venv/bin/activate

# Clone the repository and move into it
git clone https://github.com/biolab/orange3.git
cd orange3

# Install the minimum required dependencies first
pip install -r requirements-core.txt  # For Orange Python library
pip install -r requirements-gui.txt   # For Orange GUI

pip install -r requirements-sql.txt   # To use SQL support
pip install -r requirements-opt.txt   # Optional dependencies, may fail

# Finally install Orange in editable/development mode.
pip install -e .

Installation of SciPy and qt-graph-helpers is sometimes challenging because of their non-python dependencies that have to be installed manually. More detailed, if mostly obsolete, guides for some platforms can be found in the wiki.

Anaconda Installation

First, install Anaconda for your OS (Python version 3.5+). Create virtual environment for Orange:

conda create python=3 --name orange3 

In your Anaconda Prompt add conda-forge to your channels:

conda config --add channels conda-forge

This will enable access to the latest Orange release. Then install Orange3:

conda install orange3

Starting Orange GUI

Orange GUI requires PyQt, which is not pip-installable in Python 3. You have to download and install it system-wide. Make sure that the virtual environment for orange is created with --system-site-packages, so it will have access to the installed PyQt4.

To start Orange GUI from the command line, assuming it was successfully installed, run:

orange-canvas
# or
python3 -m Orange.canvas

Append --help for a list of program options.

If you're running Orange with PyQt5 or if you have multiple PyQt versions available, set the environmental variable QT_API to the PyQt version to use, e.g.:

export QT_API=pyqt5
orange-canvas

Compiling on Windows

Get appropriate wheels for missing libraries. You will need numpy+mkl and scipy.

Install them with

pip install some-wheel.whl

Install Visual Studio compiler. Then go to Orange3 folder and run:

python setup.py build_ext -i --compiler=msvc install