Commit aa9ddd65 authored by Rane Squires's avatar Rane Squires

Added installation functionality

parent 0382d2e2
Pipeline #10 canceled with stages
# @summary A short summary of the purpose of this class
# @summary Installs Conda
#
# A description of what this class does
# If anaconda is not already installed, installs conda and python via the lightweight miniconda installer.
#
# @example
# include anaconda::install
class anaconda::install {
exec { 'initalinstallconda':
unless => 'command conda',
command => 'wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh && bash ~/miniconda.sh -b -p $HOME/miniconda',
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment