Skip to content

Commit 660e8a6

Browse files
authored
Merge pull request #3838 from markotoplak/readme
Update readme
2 parents 4801e64 + 8513f56 commit 660e8a6

File tree

1 file changed

+4
-46
lines changed

1 file changed

+4
-46
lines changed

README.md

Lines changed: 4 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -48,41 +48,18 @@ Installing with pip
4848
To install Orange with pip, run the following.
4949

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

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

58-
# Clone the repository and move into it
59-
git clone https://github.com/biolab/orange3.git
60-
cd orange3
61-
6258
# Install Qt dependencies for the GUI
63-
pip install PyQt5
64-
65-
# Install other minimum required dependencies
66-
pip install -r requirements-core.txt # For Orange Python library
67-
pip install -r requirements-gui.txt # For Orange GUI
68-
69-
pip install -r requirements-sql.txt # To use SQL support
70-
pip install -r requirements-opt.txt # Optional dependencies, may fail
71-
72-
# Finally install Orange in editable/development mode.
73-
pip install -e .
59+
pip install PyQt5 PyQtWebEngine
7460

75-
Installation of SciPy and qt-graph-helpers is sometimes challenging because of
76-
their non-python dependencies that have to be installed manually. More
77-
detailed, if mostly obsolete, guides for some platforms can be found in
78-
the [wiki].
79-
80-
[wiki]: https://github.com/biolab/orange3/wiki
81-
82-
### Missing WebKit/WebEngine
83-
84-
Some distributions of PyQt5 come without WebKit or WebEngine, required by some
85-
add-ons and for reporting. Running `pip install PyQtWebEngine` may solve this issue.
61+
# Install Orange
62+
pip install orange3
8663

8764
Starting Orange GUI
8865
-------------------
@@ -94,22 +71,3 @@ To start Orange GUI from the command line, run:
9471
python3 -m Orange.canvas
9572

9673
Append `--help` for a list of program options.
97-
98-
99-
Compiling on Windows
100-
--------------------
101-
102-
Get appropriate wheels for missing libraries. You will need [numpy+mkl] and [scipy].
103-
104-
[numpy+mkl]: http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
105-
[scipy]: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
106-
107-
Install them with
108-
109-
pip install <wheel name>.whl
110-
111-
Install [Visual Studio compiler]. Then go to Orange3 folder and run:
112-
113-
[Visual Studio compiler]: https://developer.microsoft.com/en-us/windows/downloads
114-
115-
python setup.py build_ext -i --compiler=msvc install

0 commit comments

Comments
 (0)