homebrew-cask/Casks/anaconda.rb

23 lines
581 B
Ruby
Raw Normal View History

2015-12-18 09:15:28 +08:00
cask 'anaconda' do
2016-07-04 18:26:32 +08:00
version '4.1.0'
sha256 '4c45c8d75665fa5194ebe4e355d3427f5aa385f77eb2b5002c0c78d8ae7f2200'
2015-11-16 01:04:24 +08:00
2015-12-05 07:21:53 +08:00
url "https://repo.continuum.io/archive/Anaconda3-#{version}-MacOSX-x86_64.sh"
name 'Continuum Analytics Anaconda'
2015-11-16 01:04:24 +08:00
homepage 'https://www.continuum.io/why-anaconda'
license :gratis
depends_on macos: '>= :lion'
container type: :naked
2015-11-16 01:04:24 +08:00
installer script: "Anaconda3-#{version}-MacOSX-x86_64.sh",
args: ['-b'],
sudo: false
2015-11-16 01:04:24 +08:00
uninstall delete: '~/anaconda3'
2015-11-16 01:04:24 +08:00
caveats do
2015-12-05 06:39:58 +08:00
path_environment_variable '~/anaconda3/bin'
2015-11-16 01:04:24 +08:00
end
end