Failing in Install Anaconda in C-shell

Viewed 51

My shell is C shell, I cannot initial and activate conda environment, The following is what happens when I run conda activate:

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.

1 Answers

In your shell, execute the command:

conda init bash

I am assuming your shell name is bash. If not use it as per your shell.

Currently supported shells are:
  - bash
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell
Related