Commit be950808 authored by Rane Squires's avatar Rane Squires

Change to install latest (2019.10) anaconda instead of miniconda

parent 3710446e
Pipeline #114 canceled with stages
...@@ -7,13 +7,13 @@ ...@@ -7,13 +7,13 @@
class anaconda::install { class anaconda::install {
exec { 'downloadconda': exec { 'downloadconda':
creates => '/opt/miniconda.sh', creates => '/opt/miniconda.sh',
command => 'wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /opt/miniconda.sh', command => 'wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh -O /opt/anaconda.sh',
path => ['/usr/bin'], path => ['/usr/bin'],
} }
exec { 'initialinstallconda': exec { 'initialinstallconda':
creates => '/opt/miniconda/bin/activate', creates => '/opt/anaconda/bin/activate',
command => 'bash /opt/miniconda.sh -b -p /opt/miniconda', command => 'bash /opt/anaconda.sh -b -p /opt/anaconda',
path => ['/bin' , '/usr/bin'], path => ['/bin' , '/usr/bin'],
require => Exec['downloadconda'], require => Exec['downloadconda'],
} }
......
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