
About
There is some cases that we need to install packages with conda. But installing conda itself is headache. So, micromamba is sometimes useful.
Procedures
pyenv install 3.11.9
pyenv virtualenv 3.11.9 base311
pyenv activate base311
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest \
| tar -xvj bin/micromamba
mkdir -p ~/.local/bin
mv bin/micromamba ~/.local/bin/
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
~/.local/bin/micromamba shell init -s bash
micromamba info
micromamba create -n testenv python=3.11 -y
micromamba activate testenv