Last active
July 23, 2023 14:28
-
-
Save joaompinto/f8aff084b5dab1abf4940c8deef27e62 to your computer and use it in GitHub Desktop.
Micromamba Python 3.11
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
mkdir -p ~/bin | |
curl -Lo ~/bin/micromamba https://github.com/mamba-org/micromamba-releases/releases/download/1.4.9-0/micromamba-linux-64 | |
chmod 755 ~/bin/micromamba | |
export MAMBA_ROOT_PREFIX=~/micromamba | |
micromamba shell init -s bash -p $MAMBA_ROOT_PREFIX | |
source ~/.bashrc | |
micromamba config append channels conda-forge | |
micromamba install -n base -y python=3.11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment