Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install anaconda / miniconda on Linux silently

Tags:

How do I install the anaconda / miniconda without prompts on Linux command line?

Is there a way to pass -y kind of option to agree to the T&Cs, suggested installation location etc. by default?

like image 631
Kevad Avatar asked Mar 17 '18 15:03

Kevad


People also ask

Can I install conda without Anaconda?

Anaconda is a complete distribution of python and many common packages, created by Continuum Analytics. Conda is the package management tool which was developed for Anaconda. You can use conda without Anaconda, but using Anaconda always involves the conda tool.


1 Answers

can be achieved by bash miniconda.sh -b (thanks @darthbith)

The command line usage for this can only be seen with -h flag but not --help, so I missed it.

To install the anaconda to another place, use the -p option:

bash anaconda.sh -b -p /some/path 
like image 164
Kevad Avatar answered Oct 13 '22 14:10

Kevad