Difference between revisions of "Orange: Install Ubuntu 20.04"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "==Repository== Edit vi /etc/apt/sources.list Pastikan deb http://id.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse ==Install Orange3== sudo su...") |
Onnowpurbo (talk | contribs) |
||
| (16 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | '''SEBAIKNYA Menggunakan Anaconda, karena lebih STABIL''' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
==Repository== | ==Repository== | ||
Edit | Edit | ||
| + | sudo su | ||
vi /etc/apt/sources.list | vi /etc/apt/sources.list | ||
Pastikan | Pastikan | ||
| − | deb http://id.archive.ubuntu.com/ubuntu/ | + | deb http://id.archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse |
| + | deb http://id.archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | ||
| + | deb http://id.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse | ||
| + | deb http://security.ubuntu.com/ubuntu focal-security main restricted universe multiverse | ||
==Install Orange3== | ==Install Orange3== | ||
| − | sudo | + | sudo apt update |
| − | + | sudo apt -y install qt5-default | |
| − | + | sudo apt -y install python3-pyqt5 python3-pyqt5.qtsvg | |
| − | + | sudo apt -y install python3-dev python3-pip | |
| − | |||
| − | |||
| − | apt -y install python3-dev python3-pip | ||
| − | '''WARNING:''' Proses Instalasi Orange3 membutuhkan waktu lama & akses Internet yang baik. | + | '''WARNING:''' |
| + | * Proses Instalasi Orange3 membutuhkan waktu lama & akses Internet yang baik. | ||
| + | * Lakukan sebagai '''USER BIASA''' | ||
'''versi minimal''' | '''versi minimal''' | ||
| + | pip3 install PyQt5 PySide2 | ||
pip3 install orange3 | pip3 install orange3 | ||
| − | |||
| + | '''versi lebih lengkap''' | ||
| + | |||
| + | pip3 install PyQt5 PySide2 | ||
pip3 install numpy scipy mkl nose sphinx pydot-ng pandas-datareader | pip3 install numpy scipy mkl nose sphinx pydot-ng pandas-datareader | ||
| − | pip3 install parameterized Theano | + | pip3 install parameterized Theano matplotlib sklearn seaborn h5py |
pip3 install matplotlib pandas scipy sklearn seaborn features | pip3 install matplotlib pandas scipy sklearn seaborn features | ||
| + | pip3 install python-twitter | ||
| + | pip3 install orange3 | ||
| + | |||
| + | Add path | ||
| + | |||
| + | export PATH="/home/onno/.local/bin:$PATH" | ||
| + | source ~/.bashrc | ||
| + | |||
| + | ==Optional untuk Python== | ||
| + | |||
pip3 install spyder | pip3 install spyder | ||
pip3 install tensorflow keras | pip3 install tensorflow keras | ||
| − | |||
mkdir -p /usr/lib/python3.6/site-packages/ | mkdir -p /usr/lib/python3.6/site-packages/ | ||
chmod -Rf 777 /usr/lib/python3.6/site-packages/ | chmod -Rf 777 /usr/lib/python3.6/site-packages/ | ||
chown -Rf nobody: /usr/lib/python3.6/site-packages/ | chown -Rf nobody: /usr/lib/python3.6/site-packages/ | ||
| − | |||
| − | |||
| − | |||
| − | |||
==Pranala Menarik== | ==Pranala Menarik== | ||
* [[Orange]] | * [[Orange]] | ||
Latest revision as of 07:32, 29 December 2020
SEBAIKNYA Menggunakan Anaconda, karena lebih STABIL
Repository
Edit
sudo su vi /etc/apt/sources.list
Pastikan
deb http://id.archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse deb http://id.archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse deb http://id.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse deb http://security.ubuntu.com/ubuntu focal-security main restricted universe multiverse
Install Orange3
sudo apt update sudo apt -y install qt5-default sudo apt -y install python3-pyqt5 python3-pyqt5.qtsvg sudo apt -y install python3-dev python3-pip
WARNING:
- Proses Instalasi Orange3 membutuhkan waktu lama & akses Internet yang baik.
- Lakukan sebagai USER BIASA
versi minimal
pip3 install PyQt5 PySide2 pip3 install orange3
versi lebih lengkap
pip3 install PyQt5 PySide2 pip3 install numpy scipy mkl nose sphinx pydot-ng pandas-datareader pip3 install parameterized Theano matplotlib sklearn seaborn h5py pip3 install matplotlib pandas scipy sklearn seaborn features pip3 install python-twitter pip3 install orange3
Add path
export PATH="/home/onno/.local/bin:$PATH" source ~/.bashrc
Optional untuk Python
pip3 install spyder pip3 install tensorflow keras
mkdir -p /usr/lib/python3.6/site-packages/ chmod -Rf 777 /usr/lib/python3.6/site-packages/ chown -Rf nobody: /usr/lib/python3.6/site-packages/