useradd -m -d /home/example -s /bin/bash example
su - examplehttps://www.anaconda.com/docs/getting-started/miniconda/install#linux-2
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.shDo you wish to update your shell profile to automatically initialize conda?
(...)
Proceed with initialization? [yes|no]
[no] >>> yes
rm Miniconda3-latest-Linux-x86_64.shYou should have "(base)" added to your PS1. There's a 1-2s lag while loading the venv.
conda create --name example python=3.11
conda activate exampleThat's it!