Downloads:
41,115
Downloads of v 25.3.0.100:
5
Last Update:
28 Apr 2025
Published Date:
28 Apr 2025
Package Maintainer(s):
Software Author(s):
- Miniforge Contributors
Tags:
conda-forge anaconda3 miniconda3 miniforge3 python3- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Miniforge3
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
25.3.0.100 | Updated: 28 Apr 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
41,115
Downloads of v 25.3.0.100:
5
Published:
28 Apr 2025
Maintainer(s):
Software Author(s):
- Miniforge Contributors
Miniforge3 25.3.0.100
(Waiting for Maintainer to take corrective action)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Miniforge Contributors. The inclusion of Miniforge Contributors trademark(s), if any, upon this webpage is solely to identify Miniforge Contributors goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
Miniforge3 installs the conda package manager with the following features pre-configured:
- conda-forge set as the default (and only) channel.
- Packages in the base environment are obtained from the conda-forge channel.
You can provide parameters for the installation (conda docs).
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
/InstallationType:
[AllUsers
|JustMe
]- Default:
AllUsers
(install for all users)
- Default:
/RegisterPython:
[0
|1
]- Default:
1
(register miniforge3 python as the system's default)
- Default:
/AddToPath:
[0
|1
]- Default:
0
(do not add miniforge3 directories to path) - Note: As of Miniforge3 4.12.0-0, you cannot add miniforge3 to the PATH environment during an
AllUsers
installation.
This was done to address a security exploit
(additional information).
- Default:
/D:
(installation path)- Default for
AllUsers
:$toolsDir\miniforge3
($toolsDir
is the path returned by chocolatey'sGet-ToolsLocation
function and defaults toC:\tools
) - Default for
JustMe
:$Env:LOCALAPPDATA\miniforge3
($Env:LOCALAPPDATA
is set by Windows and defaults toC:\Users\{USERNAME}\AppData\Local
)
- Default for
Example: choco install miniforge3 --params="'/InstallationType:JustMe /AddToPath:1'"
.
Miniforge installer code uses BSD-3-Clause license as stated below.
Binary packages that come with it have their own licensing terms
and by installing miniforge you agree to the licensing terms of individual
packages as well. They include different OSI-approved licenses including
the GNU General Public License and can be found in pkgs/<pkg-name>/info/licenses
folders.
Miniforge installer comes with a boostrapping executable that is used
when installing miniforge and is deleted after miniforge is installed.
The bootstrapping executable uses micromamba, cli11, cpp-filesystem,
curl, c-ares, krb5, libarchive, libev, lz4, nghttp2, openssl, libsolv,
nlohmann-json, reproc and zstd which are licensed under BSD-3-Clause,
MIT and OpenSSL licenses. Licenses and copyright notices of these
projects can be found at the following URL.
https://github.com/conda-forge/micromamba-feedstock/tree/master/recipe.
=============================================================================
Copyright (c) 2019-2021, conda-forge
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to
x64: https://github.com/conda-forge/miniforge/releases/download/25.3.0-1/Miniforge3-25.3.0-1-Windows-x86_64.exe
to download the installer.
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum64: B14AD50D85A218268A14CAD7469CABB4E5364F75D34ADD3792449EC935DDF3AB
File 'LICENSE.txt' is obtained from:
https://github.com/conda-forge/miniforge/blob/main/LICENSE
function Get-SilentArgs($packageParameters) {
$toolsDir = Get-ToolsLocation
if (!$packageParameters['InstallationType']) {
$InstallationType = 'AllUsers'
}
else {
if ($packageParameters['InstallationType'] -notin 'AllUsers', 'JustMe') {
throw "Value for InstallationType not recognised: only `'AllUsers`' or `'JustMe`' are valid"
}
else {
$InstallationType = $packageParameters['InstallationType']
}
}
if (!$packageParameters['RegisterPython']) {
$RegisterPython = '1'
}
else {
if ($packageParameters['RegisterPython'] -notin '0', '1') {
throw "Value for RegisterPython not recognised: only `'0`' or `'1`' are valid"
}
else {
$RegisterPython = $packageParameters['RegisterPython']
}
}
if (!$packageParameters['AddToPath']) {
$AddToPath = '0'
}
else {
if ($packageParameters['AddToPath'] -notin '0', '1') {
throw "Value for AddToPath not recognised: only `'0`' or `'1`' are valid"
}
else {
$AddToPath = $packageParameters['AddToPath']
}
}
if (!$packageParameters['D']) {
if ($InstallationType -eq 'JustMe') {
$D = Join-Path $Env:LOCALAPPDATA 'miniforge3'
}
else {
$D = Join-Path $toolsDir 'miniforge3'
}
}
else {
if (!(Test-Path -IsValid $packageParameters['D'])) {
throw "Value for D ($($packageParameters['D'])) is not a valid directory path"
}
else {
$D = $packageParameters['D']
}
}
Write-Host "miniforge3 will be installed for $(if ($InstallationType -eq "AllUsers") { "all users" } else { "current user" })."
Write-Host "miniforge3 python will $(if ($RegisterPython -ne "1") { "not " })be registered as the system's default."
Write-Host "miniforge3 directories will $(if ($AddToPath -ne "1") { "not " })be added to path."
Write-Host "miniforge3 will be installed to `'$D`'."
Write-Host ""
return "/S /InstallationType=$InstallationType /RegisterPython=$RegisterPython /AddToPath=$AddToPath /D=$D"
}
md5: 5305564879E8E5FFB43BE48761632D09 | sha1: 849301CD17957B0EB002177E652760D73E07FD3A | sha256: B14AD50D85A218268A14CAD7469CABB4E5364F75D34ADD3792449EC935DDF3AB | sha512: 8395F9E470E45ADCB6CD17C09ABB875CF8E891D31041899DDDB10A482C2B04C18D76FB80203562C95E03194905A5E71B4D292BF356B889F8FAF13778B1B60E70
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Miniforge3 25.3.0.100 | 5 | Monday, April 28, 2025 |
Waiting for Maintainer
|
|
Miniforge3 24.11.3.200 | 3956 | Thursday, March 13, 2025 | Approved | |
Miniforge3 24.11.3.100 | 266 | Wednesday, March 12, 2025 | Approved | |
Miniforge3 24.11.3 | 5387 | Wednesday, January 22, 2025 | Approved | |
Miniforge3 24.11.2.100 | 3486 | Sunday, January 5, 2025 | Approved | |
Miniforge3 24.11.0.100 | 4730 | Sunday, December 15, 2024 | Approved | |
Miniforge3 24.11.0 | 650 | Thursday, December 12, 2024 | Approved | |
Miniforge3 24.9.2 | 4742 | Thursday, November 14, 2024 | Approved | |
Miniforge3 24.9.0 | 5192 | Wednesday, October 23, 2024 | Approved | |
Miniforge3 24.7.1.200 | 6385 | Saturday, September 28, 2024 | Approved | |
Miniforge3 24.7.1 | 464 | Wednesday, September 4, 2024 | Approved | |
Miniforge3 24.3.0 | 1673 | Wednesday, April 17, 2024 | Approved | |
Miniforge3 24.1.2 | 360 | Monday, March 25, 2024 | Approved | |
Miniforge3 23.11.0 | 525 | Wednesday, January 17, 2024 | Approved | |
Miniforge3 23.3.1.100 | 668 | Monday, September 4, 2023 | Approved | |
Miniforge3 23.3.1 | 145 | Monday, August 21, 2023 | Approved | |
Miniforge3 23.1.0.400 | 175 | Friday, July 14, 2023 | Approved | |
Miniforge3 23.1.0.300 | 157 | Sunday, July 2, 2023 | Approved | |
Miniforge3 23.1.0.200 | 120 | Wednesday, June 28, 2023 | Approved | |
Miniforge3 23.1.0.100 | 283 | Monday, April 3, 2023 | Approved | |
Miniforge3 23.1.0.000 | 135 | Wednesday, March 29, 2023 | Approved | |
Miniforge3 22.11.1.400 | 161 | Sunday, February 12, 2023 | Approved | |
Miniforge3 22.11.1.200 | 116 | Friday, February 3, 2023 | Approved | |
Miniforge3 22.9.0.300 | 153 | Wednesday, January 11, 2023 | Approved | |
Miniforge3 22.9.0.200 | 171 | Sunday, November 20, 2022 | Approved | |
Miniforge3 22.9.0.100 | 101 | Tuesday, November 1, 2022 | Approved | |
Miniforge3 22.9.0.000 | 119 | Thursday, October 27, 2022 | Approved | |
Miniforge3 4.14.0.200 | 117 | Wednesday, October 26, 2022 | Approved | |
Miniforge3 4.14.0.000 | 178 | Wednesday, August 24, 2022 | Approved | |
Miniforge3 4.13.0.100 | 205 | Sunday, July 31, 2022 | Approved | |
Miniforge3 4.12.0.200 | 174 | Friday, June 10, 2022 | Approved | |
Miniforge3 4.12.0.000 | 116 | Tuesday, May 24, 2022 | Approved |
Copyright (c) 2019-2021, conda-forge
This package has no dependencies.
Ground Rules:
- This discussion is only about Miniforge3 and the Miniforge3 package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Miniforge3, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
Geicht (maintainer) on 28 Apr 2025 01:37:40 +00:00:
User 'Geicht' (maintainer) submitted package.
chocolatey-ops (reviewer) on 28 Apr 2025 02:12:31 +00:00:
miniforge3 has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Notes
Notes typically flag things for both you and the reviewer to go over. Sometimes this is the use of things that may or may not be necessary given the constraints of what you are trying to do and/or are harder for automation to flag for other reasons. Items found in Notes might be Requirements depending on the context. A package version can be approved without addressing Note comments.
chocolatey-ops (reviewer) on 28 Apr 2025 03:07:20 +00:00:
miniforge3 has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/2cd940237c96c008238e0ef21c97229d for details.
The package status will be changed and will be waiting on your next actions.