Conda command not found

If you’re using zsh and it has not been set up to read .bashrc, you need to add the Miniconda directory to the zsh shell PATH environment variable. Add this to your .zshrc: export PATH=”/home/username/miniconda/bin:$PATH” Make sure to replace /home/username/miniconda with your actual path. Save, exit the terminal and then reopen the terminal. conda command … Read more

How to remove (base) from terminal prompt after updating conda

That’s because conda’s base environment is activated on startup. To set the auto_activate_base parameter to false, type: conda config –set auto_activate_base false Edited 2021/09/09: If you are facing the exact same situation as the OP, that you are using conda to manage environments, and wanted to make (base) environment looks no different to system environment … Read more

Link Conda environment with Jupyter Notebook

For Anaconda I suggest you a much easier and proper solution; just give a look at the nb_conda_kernels package. It allows you to “manage your conda environment-based kernels inside the Jupyter Notebook”. Is should be included since Anaconda version 4.1.0, otherwise simply use conda install nb_conda Now you should be able to manage all direcly … Read more

Anaconda vs. miniconda

Per the original docs: Choose Anaconda if you: Are new to conda or Python Like the convenience of having Python and over 1500 scientific packages automatically installed at once Have the time and disk space (a few minutes and 3 GB), and/or Don’t want to install each of the packages you want to use individually. … Read more