snippetbashTip
conda init — Initialize conda for shell interaction. Most shells need to be closed and restarted for changes to t
Viewed 0 times
conda initshellcommandcondaforcliinitializeinteraction
Problem
How to use the
conda init command: Initialize conda for shell interaction. Most shells need to be closed and restarted for changes to take effect. More information: <https://docs.conda.io/projects/conda/en/latest/commands/init.html>.Solution
conda init — Initialize conda for shell interaction. Most shells need to be closed and restarted for changes to take effect. More information: <https://docs.conda.io/projects/conda/en/latest/commands/init.html>.Initialize a specific shell (if none is specified, defaults to
bash for UNIX and powershell for Windows):conda init {{zsh|bash|powershell|fish|tcsh|xonsh}}Initialize all available shells:
conda init --allInitialize conda for all users on the system:
conda init --systemDon't initialize conda for the current user:
conda init --no-userAdd
condabin/ directory to $PATH:conda init --condabinUndo effects of the last
conda init:conda init --reverseCode Snippets
Initialize a specific shell (if none is specified, defaults to `bash` for UNIX and `powershell` for Windows)
conda init {{zsh|bash|powershell|fish|tcsh|xonsh}}Initialize all available shells
conda init --allInitialize conda for all users on the system
conda init --systemDon't initialize conda for the current user
conda init --no-userAdd `condabin/` directory to `$PATH`
conda init --condabinContext
tldr-pages: common/conda init
Revisions (0)
No revisions yet.