forked from ScoopInstaller/Extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anaconda3.json
59 lines (59 loc) · 1.73 KB
/
anaconda3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"version": "4.4.0",
"license": "BSD",
"homepage": "https://www.anaconda.com/",
"checkver": {
"url": "https://repo.continuum.io/archive",
"re": "Anaconda3-([\\d.]+)-Windows"
},
"bin": [
[
"python.exe",
"python3"
]
],
"pre_install": "
Write-Host 'Installing Anaconda 3. This can take up to 30 minutes on an HDD.' -ForegroundColor Magenta
",
"installer": {
"file": "anaconda3-installer.exe",
"args": [
"/S",
"/InstallationType=JustMe",
"/RegisterPython=1",
"/AddToPath=0",
"/D=$dir"
]
},
"uninstaller":{
"file":"Uninstall-Anaconda.exe",
"args":[
"/S"
]
},
"env_add_path": "Scripts",
"architecture": {
"64bit": {
"url": "http://repo.continuum.io/archive/Anaconda3-4.4.0-Windows-x86_64.exe#/anaconda3-installer.exe",
"hash": "md5:aa200a1c059a551e0ba9a5314a9554a5"
},
"32bit": {
"url": "http://repo.continuum.io/archive/Anaconda3-4.4.0-Windows-x86.exe#/anaconda3-installer.exe",
"hash": "md5:c7a66350b79354773dabbbef6f58a3af"
}
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "http://repo.continuum.io/archive/Anaconda3-$version-Windows-x86_64.exe#/anaconda3-installer.exe"
},
"32bit": {
"url": "http://repo.continuum.io/archive/Anaconda3-$version-Windows-x86.exe#/anaconda3-installer.exe"
}
},
"hash": {
"url": "$baseurl",
"find": "$basename<.*\\s+<.*\\s+<.*\\s+<td>([a-fA-F0-9]{32})</td>"
}
}
}