forked from ScoopInstaller/Extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anaconda3.json
59 lines (59 loc) · 2.05 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": "2018.12",
"license": "BSD-3-Clause",
"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": "https://repo.continuum.io/archive/Anaconda3-2018.12-Windows-x86_64.exe#/anaconda3-installer.exe",
"hash": "09d84a789013d5e2bfb0148bdd9f5d69a6baa2127edabb9a8e50e77c6fc57ecc"
},
"32bit": {
"url": "https://repo.continuum.io/archive/Anaconda3-2018.12-Windows-x86.exe#/anaconda3-installer.exe",
"hash": "3f2955c1874ca452b985627a10859f6906eb21d4f6a4c055b78049cf6822b46d"
}
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://repo.continuum.io/archive/Anaconda3-$version-Windows-x86_64.exe#/anaconda3-installer.exe",
"hash": {
"url": "http://docs.anaconda.com/anaconda/install/hashes/Anaconda3-$version-Windows-x86_64.exe-hash/",
"find": "([A-Fa-f\\d]{64})"
}
},
"32bit": {
"url": "https://repo.continuum.io/archive/Anaconda3-$version-Windows-x86.exe#/anaconda3-installer.exe",
"hash": {
"url": "http://docs.anaconda.com/anaconda/install/hashes/Anaconda3-$version-Windows-x86.exe-hash/",
"find": "([A-Fa-f\\d]{64})"
}
}
}
}
}