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

From OnnoWiki
Jump to navigation Jump to search
Line 17: Line 17:
 
  conda install orange3
 
  conda install orange3
 
  conda install orange3-<addon name>
 
  conda install orange3-<addon name>
 +
 +
 +
===Alternatif Lain===
 +
 +
 +
# Add conda-forge to your channels for access to the latest release
 +
conda config --add channels conda-forge
 +
 +
# Perhaps enforce strict conda-forge priority
 +
conda config --set channel_priority strict
 +
 +
# Create and activate an environment for Orange
 +
conda create python=3 --yes --name orange3
 +
conda activate orange3
 +
 +
# Install Orange
 +
conda install orange3

Revision as of 03:30, 5 April 2022

Install Anaconda

Download dari https://www.continuum.io/downloads Sebagai user biasa, jalankan (untuk Python3)

cd ~/Downloads/
bash Anaconda3-2021.11-Linux-x86_64.sh

Setelah selesai, jalankan

source ~/.bashrc

Install Orange

conda config --add channels conda-forge
conda config --set channel_priority false
conda install orange3
conda install orange3-<addon name>


Alternatif Lain

# Add conda-forge to your channels for access to the latest release
conda config --add channels conda-forge
# Perhaps enforce strict conda-forge priority
conda config --set channel_priority strict
# Create and activate an environment for Orange
conda create python=3 --yes --name orange3
conda activate orange3

# Install Orange
conda install orange3