Skip to content

Commit 8a17b0c

Browse files
committed
readme: "Installing with pip" installs the last released version
1 parent 0816bc4 commit 8a17b0c

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

README.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -48,29 +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
6359
pip install PyQt5 PyQtWebEngine
6460

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 .
61+
# Install Orange
62+
pip install orange3
7463

7564
Starting Orange GUI
7665
-------------------

0 commit comments

Comments
 (0)