Difference between revisions of "Orange: Install Ubuntu 18.04"

From OnnoWiki
Jump to navigation Jump to search
(28 intermediate revisions by the same user not shown)
Line 1: Line 1:
Install
+
==Repository==
  
  sudo apt update
+
Edit
  sudo apt -y install python-pip
+
 
  sudo pip --no-cache-dir install scipy
+
vi /etc/apt/sources.list
  sudo pip install numpy scipy
+
 
  sudo pip install orange
+
Pastikan
 +
 
 +
deb http://id.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse
 +
 
 +
==Install Orange3==
 +
 
 +
  sudo su
 +
apt update
 +
   
 +
apt remove python3-pip python3-dev
 +
rm -Rf $HOME/.local/lib/python3.6/site-packages
 +
  rm -Rf /usr/local/lib/python3.6/site-packages
 +
apt install python3-dev python3-pip
 +
 
 +
pip3 install numpy scipy mkl nose sphinx pydot-ng pandas-datareader
 +
pip3 install parameterized Theano cntk matplotlib sklearn seaborn h5py
 +
  pip3 install matplotlib pandas scipy sklearn seaborn features
 +
  pip3 install spyder
 +
pip3 install tensorflow keras
 +
pip3 install orange3
 +
 
 +
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/
 +
 
 +
==Optional==
 +
 
 +
pip3 install python-twitter
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 
* [[Orange]]
 
* [[Orange]]

Revision as of 13:41, 12 October 2019

Repository

Edit

vi /etc/apt/sources.list

Pastikan

deb http://id.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse

Install Orange3

sudo su
apt update

apt remove python3-pip python3-dev
rm -Rf $HOME/.local/lib/python3.6/site-packages
rm -Rf /usr/local/lib/python3.6/site-packages
apt install python3-dev python3-pip
pip3 install numpy scipy mkl nose sphinx pydot-ng pandas-datareader
pip3 install parameterized Theano cntk matplotlib sklearn seaborn h5py
pip3 install matplotlib pandas scipy sklearn seaborn features
pip3 install spyder
pip3 install tensorflow keras
pip3 install orange3
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/

Optional

pip3 install python-twitter

Pranala Menarik