Using Conda and Conda Command Cheatsheet

Installing Conda package on macOS Do: brew install --cask conda This will download miniconda, coda and anaconda3 and all other required affiliated packages. The install location may vary, but is most likely to be in /usr/local/anaconda3/ After the installation, add the path to the anaconda3 installation directory to the $PATH system variable, by: echo 'export PATH="/usr/local/anaconda3/bin:$PATH"' >> ~/.zshrc source ~/.zshrc Initializing Conda Environment Initialize conda for your shell permanently: conda init This will add command lines to your ~/....

 April 11, 2025  •   2 min  •   287 words  •   Suyog Garg