Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions bucket/miniforge3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"version": "23.3.1-1",
"description": "Community-driven minimalistic conda installer that uses the conda-forge channel as default",
"homepage": "https://github.com/conda-forge/miniforge",
"license": "BSD-3-Clause",
"notes": [
"* Known issue:",
" - The App may fail to install when 'Long Paths' are not enabled, Check it by executing `scoop checkup`. (#11570)",
"------",
"From 4.6.0, conda has built the support for Cmd, Powershell or other shells.",
"Use \"conda init powershell\" or \"conda init __your_favorite_shell__\""
],
"architecture": {
"64bit": {
"url": "https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Miniforge3-23.3.1-1-Windows-x86_64.exe",
"hash": "ac99403cf9d6d0683293823bf5761a7042a4e9b4392130ab6ca00fcab7ebd89a"
}
},
"pre_install": "if ($dir -match ' ') { error 'The installation directory cannot include a space'; break}",
"installer": {
"script": [
"Move-Item \"$dir\\$fname\" \"$dir\\..\\$fname\"",
"Start-Process -Wait \"$dir\\..\\$fname\" -ArgumentList @('/S', '/InstallationType=JustMe', '/RegisterPython=0', '/AddToPath=0', '/NoRegistry=1', \"/D=$dir\")",
"Remove-Item \"$dir\\..\\$fname\""
]
},
"env_add_path": [
"scripts",
"Library\\bin"
],
"bin": [
"python.exe",
"pythonw.exe",
[
"python.exe",
"python3"
]
],
"persist": "envs",
"uninstaller": {
"script": [
"Start-Process -Wait \"$dir\\Uninstall-Miniforge3.exe\" -ArgumentList '/S'",
"# Workaround for 'envs' being deleted by the uninstaller. This does not affect persist.",
"New-Item \"$dir\\envs\" -ItemType Directory | Out-Null"
]
},
"checkver": {
"github": "https://github.com/conda-forge/miniforge",
"regex": "tag/([\\d.-]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/conda-forge/miniforge/releases/download/$version/Miniforge3-$version-Windows-x86_64.exe",
"hash": {
"url": "$url.sha256"
}
}
}
}
}
Loading