Anaconda python is installed (in linux) via a bash script. I am trying to use Vagrant provisioning to get Anacaonda Python installed.
In the bash script (following the documentation bootstrap.sh example) I have a bootstrap.sh script that:
wget
the install scriptchmod +x
to make it executable./<script>.sh
to install.
Installing this way fails as the installation has a few prompts, one of which requires the non-default answer.
Is it possible to automate the installation via a bash script? If not, is it necessary to use something like Puppet? I do not know Puppet at all, so have tried to avoid using...perhaps it is time to dig in?
The end goal is to ship the Vagrantfile and not host a Vagrant box.
P.S. My initial, feeble attempts made use of the linux yes
command, but a better way has to exist!