-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathanaconda3.json
66 lines (66 loc) · 2 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
60
61
62
63
64
65
66
{
"version": "5.2.0",
"description": "The most popular Python distribution for data science.",
"license": "BSD-3-Clause",
"homepage": "https://www.anaconda.com/",
"checkver": {
"url": "https://repo.continuum.io/archive",
"re": "Anaconda3-([\\d.]+)-Windows"
},
"bin": [
"python.exe",
"pythonw.exe",
[
"python.exe",
"python3"
]
],
"pre_install": "Write-Host 'Installing Anaconda 3. This can take up to 30 minutes on an HDD.' -ForegroundColor Magenta",
"installer": {
"args": [
"/S",
"/InstallationType=JustMe",
"/AddToPath=1",
"/RegisterPython=0",
"/NoRegistry=1",
"/D=$dir"
]
},
"uninstaller": {
"file": "Uninstall-Anaconda3.exe",
"args": "/S"
},
"persist": "envs",
"env_add_path": [
"Library/mingw-w64/bin",
"Library/usr/bin",
"Library/bin",
"Scripts"
],
"architecture": {
"64bit": {
"url": "https://repo.continuum.io/archive/Anaconda3-5.2.0-Windows-x86_64.exe"
},
"32bit": {
"url": "https://repo.continuum.io/archive/Anaconda3-5.2.0-Windows-x86.exe"
}
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://repo.continuum.io/archive/Anaconda3-$version-Windows-x86_64.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",
"hash": {
"url": "http://docs.anaconda.com/anaconda/install/hashes/Anaconda3-$version-Windows-x86.exe-hash/",
"find": "([A-Fa-f\\d]{64})"
}
}
}
}
}