Skip to content
🍊 πŸ“Š πŸ’‘ Orange: Interactive data analysis https://orange.biolab.si
Tree: f099ced48a
Clone or download
markotoplak Merge pull request #3773 from markotoplak/fix-readthedocs
[DOC] Add a requirements file for readthedocs
Latest commit f099ced Apr 26, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github [MNT] Remove 'implements' from pr template [skip ci] Apr 5, 2019
.travis Merge pull request #3515 from robertcv/enh/multiple_databasees Feb 22, 2019
Orange Merge pull request #3766 from rokgomiscek/cumulativeDistribution Apr 19, 2019
benchmark Remove some leftovers. Aug 26, 2016
conda-recipe Merge pull request #3552 from pavlin-policar/update-tsne Feb 1, 2019
distribute Merge remote-tracking branch 'biolab/master' Oct 25, 2018
doc doc: Replace numpydoc with sphinx.ext.napoleon Apr 26, 2019
scripts Don't add miniconda to path and register as system python Jan 10, 2019
tutorials Update learners.ipynb May 15, 2015
.codeclimate.yml Disable duplicate detection check Jul 14, 2017
.coveragerc
.gitattributes Add line ending config. Sep 19, 2013
.gitignore Add .coverage files to .gitignore Mar 15, 2019
.scrutinizer.yml .scrutinizer.yml: Automated code reviews for Python Jul 16, 2015
.travis.yml travis: add mssql testing Feb 5, 2019
CHANGELOG.md Release 3.20.1 Feb 12, 2019
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 Update README.md with instructions for install PyQtWebEngine Apr 10, 2019
appveyor.yml tests: add pymssql to appveyor Feb 5, 2019
codecov.yml Revert "Bottlechest, bottleneck" Jul 4, 2016
pylintrc pylint: Disable check for add-unsubscriptable-object Mar 1, 2019
requirements-core.txt setup.py: Specify python-louvain version constraint Feb 6, 2019
requirements-dev.txt Adding recommonmark for build Jan 25, 2019
requirements-doc.txt doc: Replace numpydoc with sphinx.ext.napoleon Apr 26, 2019
requirements-gui.txt Merge remote-tracking branch 'biolab/master' Oct 25, 2018
requirements-opt.txt ENH: Add pandas_compat.table_from_frame(df) Dec 20, 2017
requirements-readthedocs.txt Add a requirements file that can be used at readthedocs Apr 26, 2019
requirements-sql.txt sql: Add pymssql backend Oct 21, 2016
requirements.txt correctly specified 'requests' requirement Oct 1, 2018
setup.cfg setup.cfg: Change the default for with-htmlhelp config option Jan 16, 2019
setup.py Set path in MANIFEST Apr 5, 2019

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

Orange requires Python 3.6 or newer.

First, install Anaconda for your OS. 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

Installing with pip

To install Orange with pip, run the following.

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

# 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 Qt dependencies for the GUI
pip install PyQt5

# Install other minimum required dependencies
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.

Missing WebKit/WebEngine

Some distributions of PyQt5 come without WebKit or WebEngine, required by some add-ons and for reporting. Running pip install PyQtWebEngine may solve this issue.

Starting Orange GUI

To start Orange GUI from the command line, run:

orange-canvas
# or
python3 -m Orange.canvas

Append --help for a list of program options.

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
You can’t perform that action at this time.