Difference between revisions of "Orange: Instalasi"

From OnnoWiki
Jump to navigation Jump to search
Line 18: Line 18:
 
Orange can also be installed from the Python Package Index. You may need additional system packages provided by your distribution.
 
Orange can also be installed from the Python Package Index. You may need additional system packages provided by your distribution.
  
  apt install python-pip
+
  apt install python3-pyqt5
pip install --upgrade pip
 
apt install python3-pip python3-pyqt5
 
pip3 install --no-binary orange3 orange3
 
pip3 install orange3
 
 
 
 
 
Percobaan
 
 
 
 
  apt-get remove python-pip python3-pip
 
  apt-get remove python-pip python3-pip
 
  wget https://bootstrap.pypa.io/get-pip.py
 
  wget https://bootstrap.pypa.io/get-pip.py
Line 32: Line 24:
 
  python3 get-pip.py
 
  python3 get-pip.py
 
  pip install orange3
 
  pip install orange3
 
  
 
Menjalankan orange
 
Menjalankan orange

Revision as of 08:45, 29 July 2017

Anaconda

If you are using python provided by Anaconda distribution, you are almost ready to go. Add conda-forge to the list of channels you can install packages from

conda config --add channels conda-forge

and run

conda install orange3
conda install -c defaults pyqt=5 qt

(the second commands installs qt and pyqt from the defaults channel, as those provided by the conda-forge do not include webkit)

Pip

Teknik ini membutuhkan python3

Orange can also be installed from the Python Package Index. You may need additional system packages provided by your distribution.

apt install python3-pyqt5
apt-get remove python-pip python3-pip
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
python3 get-pip.py
pip install orange3

Menjalankan orange

orange-canvas

Installing from source

Clone our repository from GitHub or download the source code tarball. Then follow the instructions in README.md

To run Orange Canvas run

python -m Orange.canvas

Previous version

Orange 2.7 is still available.

Installing add-ons

Additional features can be added to Orange by installing add-ons. You can find add-on manager in Options menu.