为什么我的终端提示符前面会出现“(base)”?

我想知道为什么我的终端提示符左边有 (base)

Image of my prompt

如果我在终端中运行source ~/.profile,它会消失。
如果我关闭那个终端并重新打开一个新的终端,(base)又会出现。
我想知道它是什么。
这是我的.profile的内容(不包括标准的$path内容和其他个性化的东西):
# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
        . "$HOME/.bashrc"
    fi
fi

这是我的.bashrc文件的内容。
# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
    # We have color support; assume it's compliant with Ecma-48
    # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
    # a case would tend to support setf rather than setaf.)
    color_prompt=yes
    else
    color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

# Add an "alert" alias for long running commands.  Use like so:
#   sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi

# added by Anaconda3 installer
#export PATH="/home/jim/anaconda3/bin:$PATH"
. /home/jim/anaconda3/etc/profile.d/conda.sh
conda activate
7个回答

这也可能是因为auto_activate_base设置为True。您可以使用以下命令来检查此设置。
conda config --show | grep auto_activate_base

将其设为假

conda config --set auto_activate_base False
source ~/.bashrc

重新激活,请将其设置为True。
conda config --set auto_activate_base True
source ~/.bashrc

8这个命令终于帮了我一个大忙!其他的解决方案都不起作用,因为我的 changeps1 已经设置为 false 了。在我安装 matplotlib 通过 conda 后,出现了这个错误。以前 (base) 从来没有显示过。感谢你添加了检查配置的代码行! - Andrusch
1终于有人说到点子上了。但是你知道为什么那个值突然变成了True吗?(在我的情况下,很长一段时间都不是这样的) - HongboZhu
2请关闭并重新打开终端以使更改生效。 - Nino Filiu
4这对我也起作用了。然而,我的目标只是从命令提示符中删除(base)字符;我不想改变我的conda/python/jupyter等设置。
这样做会_只_从提示符中删除(base),没有任何副作用吗?如果不是,可能会有什么副作用?
- TransferOrbit
谢谢你的解决方案。对我很有效。 - Suraj Dubey
感谢您提供的解决方案。 - Pooja Khatri
非常感谢您提供的解决方案。这对我非常有帮助。 - mithun_ghose
对于Mac,我需要运行source ~/.bash_profile而不是~/.bashrc - ishahak
此命令在Fedora中向~/.condarc添加一行。auto_activate_base: false - Nick Dong
@NinoFiliu 这就是 ~/.bash_profile 的作用。 - Raydot
@TransferOrbit 我有同样的问题。我甚至不知道conda是什么,但为了使用PyTorch或类似的东西,我不得不安装它。你是否弄清楚改变这个设置是否会产生除了改变提示之外的其他副作用? - d-b
这似乎在再次运行Python之前都有效,然后它又出现了。 - jvriesem

这似乎来自你的 conda 环境。特别地,你是通过以下方式从你的 ~/.bashrc 激活 conda

# added by Anaconda3 installer
#export PATH="/home/jim/anaconda3/bin:$PATH"
. /home/jim/anaconda3/etc/profile.d/conda.sh
conda activate

而且conda activate会在提示符前加上(<env-name->) - 因为您没有指定特定的环境,默认为(base)

该行为在使用.condarc conda配置文件中有详细说明:

Change command prompt (changeps1)

When using activate, change the command prompt from $PS1 to include the activated environment. The default is True.

EXAMPLE:

changeps1: False
要让它消失,要么找到并修改你的.condarc文件,要么不要从你的~/.bashrc文件中激活conda。

18记住,你也可以执行conda config --set changeps1 False而不是搜索文件。要立即应用更改,请执行exec bash以重新加载 .bashrc 文件。 - Markus
3另一个解决方案是在执行conda初始化脚本后,覆盖PS1环境变量在.bashrc中。我已经有了一个自定义的PS1,所以这导致它在启动shell时不显示(base),而是在激活虚拟环境时附加它。正如我所希望的那样。 - 8bra1nz
@Markus,谢谢你的建议!在 macOS 上也适用。 - Rafael

由于conda环境的更改,会出现(base)。
以下命令可以隐藏(base)环境。
conda config --set changeps1 False

2只在基本环境中移除它,而不是其他环境,请查看此链接:https://stackoverflow.com/questions/55171696/how-to-remove-base-from-terminal-prompt-after-updating-conda - Homero Esmeraldo
最优雅的解决方案确实!谢谢。 - rimkashox

要停用一个conda环境,请输入以下命令:
conda deactivate

这将删除您的Linux提示符之前的(base),如下所示:

(base) user@office-pc:~$


从您的$HOME目录中 echo "changeps1: False" >> .condarc

这似乎仍然是Anaconda的一个实验性功能。
要将其恢复为正常状态,您可以运行以下命令:
conda init --reverse

然后你需要关闭当前的终端窗口并打开一个新的窗口来查看修改。

运行下面的代码,然后输入conda deactivate,基本环境就会消失。
echo >&2 "DeprecationWarning: 'source deactivate' is deprecated. Use 'conda deactivate'."
"$_CONDA_ROOT/etc/profile.d/conda.sh" || return $?

conda deactivate