Issue
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?
Solution
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
Answered By - Kevad Answer Checked By - Robin (WPSolving Admin)