-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
miniforge-cn: update installer section
- Loading branch information
Showing
4 changed files
with
213 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,40 @@ | ||
{ | ||
"homepage": "https://github.com/mamba-org/mamba", | ||
"version": "1.5.11-0", | ||
"description": "Micromamba is a tiny version of mamba, the fast conda package installer.", | ||
"version": "2.0.4alpha3-0", | ||
"license": "BSD-3-Clause", | ||
"description": "The Fast Cross-Platform Package Manager", | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://micro.mamba.pm/api/micromamba/win-64/latest#/dl.tar.bz2", | ||
"hash": "4e7af0e090e2dd4d0b245f62f1815de332fda1b1b6988eddb222904582d3f9d4" | ||
"url": "https://github.com/mamba-org/micromamba-releases/releases/download/2.0.4alpha3-0/micromamba-win-64#/micromamba.exe", | ||
"hash": "d486f9c47e3edf7f7682f4bfba76561935e99a6cc05327c06498bb4c3d6da5ad" | ||
} | ||
}, | ||
"bin": "Library\\bin\\micromamba.exe", | ||
"persist": [ | ||
"envs", | ||
"condabin", | ||
"pkgs", | ||
"Scripts" | ||
], | ||
"post_install": "New-Item -Path \"$dir\\base\" -ItemType Directory -Force | Out-Null", | ||
"env_set": { | ||
"MAMBA_ROOT_PREFIX": "$dir\\base", | ||
"MAMBA_EXE": "$dir\\micromamba.exe" | ||
}, | ||
"checkver": { | ||
"url": "https://anaconda.org/conda-forge/micromamba/files", | ||
"regex": "win-64/micromamba-([\\d.-]+)\\.tar" | ||
"url": "https://api.anaconda.org/release/conda-forge/micromamba/latest", | ||
"regex": "win-64/micromamba-([\\d.]+([\\w-]+)).tar.bz2" | ||
}, | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://micro.mamba.pm/api/micromamba/win-64/latest#/dl.tar.bz2" | ||
"url": "https://github.com/mamba-org/micromamba-releases/releases/download/$version/micromamba-win-64#/micromamba.exe", | ||
"hash": { | ||
"url": "$url.sha256" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"notes": [ | ||
"No shim is now exposed for micromamba, you have to add following hook to your PowerShell $PROFILE to use it:", | ||
"", | ||
"(& $env:MAMBA_EXE 'shell' 'hook' -s 'powershell') | Out-String | Invoke-Expression", | ||
"", | ||
"Also note that the mamba base environment located in $env:MAMBA_ROOT_PREFIX is now NOT persisted,", | ||
"we advice to setup 'envs_dirs' to use a seperated path like '~/.conda/envs' and avoid using the base env.", | ||
"https://conda.io/projects/conda/en/latest/user-guide/configuration/use-condarc.html#specify-environment-directories-envs-dirs" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters