Downloads:
8,561
Downloads of v 24.11.0.101:
4
Last Update:
03 Jun 2025
Published Date:
03 Jun 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
[Deprecated] Mambaforge
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
24.11.0.101 | Updated: 03 Jun 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:
8,561
Downloads of v 24.11.0.101:
4
Published:
03 Jun 2025
Maintainer(s):
Software Author(s):
- Miniforge Contributors
[Deprecated] Mambaforge 24.11.0.101
(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
Validation Testing Failed
Verification Testing Pending
Scan Testing Pending
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.
This package has been deprecated.
Mambaforge installs the mamba 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 mambaforge python as the system's default)
- Default:
/AddToPath:
[0
|1
]- Default:
0
(do not add mambaforge directories to path) - Note: As of Mambaforge 4.12.0-0, you cannot add mambaforge 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\mambaforge
($toolsDir
is the path returned by chocolatey'sGet-ToolsLocation
function and defaults toC:\tools
) - Default for
JustMe
:$Env:LOCALAPPDATA\mambaforge
($Env:LOCALAPPDATA
is set by Windows and defaults toC:\Users\{USERNAME}\AppData\Local
)
- Default for
Example: choco install mambaforge --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/24.11.0-1/Mambaforge-24.11.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: 8EE08A4074AA1A2E48A0F73245E77571974BD8E33951D56CC67CE6960668294E
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 'mambaforge'
}
else {
$D = Join-Path $toolsDir 'mambaforge'
}
}
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 "mambaforge will be installed for $(if ($InstallationType -eq "AllUsers") { "all users" } else { "current user" })."
Write-Host "mambaforge python will $(if ($RegisterPython -ne "1") { "not " })be registered as the system's default."
Write-Host "mambaforge directories will $(if ($AddToPath -ne "1") { "not " })be added to path."
Write-Host "mambaforge will be installed to `'$D`'."
Write-Host ""
return "/S /InstallationType=$InstallationType /RegisterPython=$RegisterPython /AddToPath=$AddToPath /D=$D"
}
md5: AE23F15A0C28E4711C69679E1F3F1483 | sha1: 886DCF5E23F540615FFCA959E6ED2D24E92EBC29 | sha256: 8EE08A4074AA1A2E48A0F73245E77571974BD8E33951D56CC67CE6960668294E | sha512: 354E85DD8D49FA3CDA5BF45A57E08C029129C80ADBFE3ED3916A377068D2769DD9E44092C4C94C0AC44EE3B4B4B07629E0DE02562895FD9B5CA70384935F57EA
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 |
---|---|---|---|---|
[Deprecated] Mambaforge 24.11.0.101 | 4 | Tuesday, June 3, 2025 |
Waiting for Maintainer
|
|
Mambaforge 24.11.0.100 | 936 | Sunday, December 15, 2024 | Approved | |
Mambaforge 24.11.0 | 52 | Thursday, December 12, 2024 | Approved | |
Mambaforge 24.9.2 | 194 | Thursday, November 14, 2024 | Approved | |
Mambaforge 24.9.0 | 163 | Wednesday, October 23, 2024 | Approved | |
Mambaforge 24.7.1.200 | 215 | Saturday, September 28, 2024 | Approved | |
Mambaforge 24.7.1 | 204 | Wednesday, September 4, 2024 | Approved | |
Mambaforge 24.3.0 | 916 | Wednesday, April 17, 2024 | Approved | |
Mambaforge 24.1.2 | 276 | Monday, March 25, 2024 | Approved | |
Mambaforge 23.11.0 | 681 | Wednesday, January 17, 2024 | Approved | |
Mambaforge 23.3.1.100 | 1016 | Monday, September 4, 2023 | Approved | |
Mambaforge 23.3.1 | 272 | Monday, August 21, 2023 | Approved | |
Mambaforge 23.1.0.400 | 485 | Friday, July 14, 2023 | Approved | |
Mambaforge 23.1.0.300 | 225 | Sunday, July 2, 2023 | Approved | |
Mambaforge 23.1.0.200 | 129 | Wednesday, June 28, 2023 | Approved | |
Mambaforge 23.1.0.100 | 780 | Sunday, April 2, 2023 | Approved | |
Mambaforge 23.1.0.000 | 138 | Wednesday, March 29, 2023 | Approved | |
Mambaforge 22.11.1.400 | 433 | Sunday, February 12, 2023 | Approved | |
Mambaforge 22.11.1.200 | 181 | Saturday, February 4, 2023 | Approved | |
Mambaforge 22.9.0.300 | 191 | Wednesday, January 11, 2023 | Approved | |
Mambaforge 22.9.0.200 | 233 | Sunday, November 20, 2022 | Approved | |
Mambaforge 22.9.0.100 | 137 | Tuesday, November 1, 2022 | Approved | |
Mambaforge 22.9.0.000 | 110 | Thursday, October 27, 2022 | Approved | |
Mambaforge 4.14.0.200 | 136 | Wednesday, October 26, 2022 | Approved | |
Mambaforge 4.14.0.000 | 166 | Wednesday, August 24, 2022 | Approved | |
Mambaforge 4.13.0.100 | 137 | Sunday, July 31, 2022 | Approved | |
Mambaforge 4.12.0.200 | 151 | Monday, June 13, 2022 | Approved |
Copyright (c) 2019-2021, conda-forge
This package has no dependencies.
Ground Rules:
- This discussion is only about [Deprecated] Mambaforge and the [Deprecated] Mambaforge 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 [Deprecated] Mambaforge, 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 03 Jun 2025 20:19:17 +00:00:
User 'Geicht' (maintainer) submitted package.
chocolatey-ops (reviewer) on 03 Jun 2025 20:53:25 +00:00:
mambaforge has failed automated validation.
Requirements
Requirements represent the minimum quality of a package that is acceptable. When a package version has failed requirements, the package version requires fixing and/or response by the maintainer. Provided a Requirement has flagged correctly, it must be fixed before the package version can be approved. The exact same version should be uploaded during moderation review.
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.