You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
573 B
23 lines
573 B
cask 'miniconda2' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url 'https://repo.continuum.io/miniconda/Miniconda2-latest-MacOSX-x86_64.sh'
|
|
name 'Continuum Analytics Miniconda'
|
|
homepage 'https://www.continuum.io/why-anaconda'
|
|
|
|
auto_updates true
|
|
depends_on macos: '>= :lion'
|
|
container type: :naked
|
|
|
|
installer script: {
|
|
executable: 'Miniconda2-latest-MacOSX-x86_64.sh',
|
|
args: ['-b'],
|
|
}
|
|
|
|
uninstall delete: '~/miniconda2'
|
|
|
|
caveats do
|
|
path_environment_variable '~/miniconda2/bin'
|
|
end
|
|
end
|
|
|