Last active
March 10, 2024 15:47
-
-
Save gglin001/410066f34aa2b4e3bbf05a7837dfb560 to your computer and use it in GitHub Desktop.
micromamba install linux64
This file contains hidden or 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
# conda config --add channels conda-forge | |
# conda config --set channel_priority strict | |
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba | |
mkdir -p $HOME/micromamba | |
mv ./bin $HOME/micromamba | |
$HOME/micromamba/bin/micromamba shell init --shell bash --root-prefix=$HOME/micromamba | |
micromamba config append channels conda-forge | |
micromamba create -n pyenv python=3.12 | |
# vi $HOME/.bashrc | |
# export PATH=$PATH:$HOME/micromamba/bin | |
alias conda=$HOME/micromamba/bin/micromamba | |
alias mamba=$HOME/micromamba/bin/micromamba | |
micromamba activate pyenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment