Skip to content

Miniconda Troubleshooting

Errors running conda --version

Add conda_bin to you path environment variable.

Windows

Open search and search for 'environment variables', or find it via Control Panel. Click on 'Environment Variables' and select the PATH field in the upper box, then Edit. Add a new line containing C:\Users\<username>\miniconda3\condabin (check that this folder exits in your file explorer, too) and click OK. Restart your command line, run conda init, and try again.

MacOS/Linux

In your command line:

export PATH="$PATH:~/miniconda3/condabin"
conda init