Difference between revisions of "Orange: Install dengan Anaconda Ubuntu 20.04.1"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "==Install Anaconda== Download dari https://www.continuum.io/downloads Jalankan (untuk Python3) bash Anaconda3-2021.11-Linux-x86_64.sh ==Install Orange== conda config --a...")
 
 
(9 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
Download dari https://www.continuum.io/downloads
 
Download dari https://www.continuum.io/downloads
Jalankan (untuk Python3)
 
  
  bash Anaconda3-2021.11-Linux-x86_64.sh
+
https://repo.anaconda.com/archive/Anaconda3-2023.07-2-Linux-x86_64.sh
 +
 
 +
Sebagai user biasa, jalankan (untuk Python3)
 +
 
 +
cd ~/Downloads/
 +
  bash Anaconda3-2023.07-2-Linux-x86_64.sh
 +
 
 +
Setelah selesai, jalankan
 +
 
 +
source ~/.bashrc
  
 
==Install Orange==
 
==Install Orange==
 +
 +
  
 
  conda config --add channels conda-forge
 
  conda config --add channels conda-forge
 
  conda config --set channel_priority strict
 
  conda config --set channel_priority strict
 
+
conda create python=3 --yes --name orange3
 +
conda activate orange3
 
  conda install orange3
 
  conda install orange3

Latest revision as of 09:57, 12 September 2023

Install Anaconda

Download dari https://www.continuum.io/downloads

https://repo.anaconda.com/archive/Anaconda3-2023.07-2-Linux-x86_64.sh

Sebagai user biasa, jalankan (untuk Python3)

cd ~/Downloads/
bash Anaconda3-2023.07-2-Linux-x86_64.sh

Setelah selesai, jalankan

source ~/.bashrc

Install Orange

conda config --add channels conda-forge
conda config --set channel_priority strict
conda create python=3 --yes --name orange3
conda activate orange3
conda install orange3