터미널 프롬프트 앞에“(base)”가 나타나는 이유는 무엇입니까?


87

제목 (base)에 따라 터미널 프롬프트 왼쪽에 왜 있는지 궁금 합니다.

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

나는 온통 수색했지만 답을 찾지 못했습니다. 다른 사용자가 같은 질문을했지만 아직 답이 없습니다.

답변:


37

이것은 conda환경 에서 온 것으로 보입니다 . 특히 다음과 같이 활성화 conda하고 있습니다.~/.bashrc

# 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 구성 파일 사용에 설명되어 있습니다 .

명령 프롬프트 변경 (changeps1)

activate를 사용할 때 활성화 된 환경을 포함하도록 명령 프롬프트를 $ PS1에서 변경하십시오. 기본값은 True입니다.

예:

changeps1: False

.condarc파일을 찾아서 수정하거나 파일에서 conda를 활성화하지 마십시오 ~/.bashrc.


101

auto_activate_baseTrue로 설정되어 있기 때문일 수도 있습니다 . 다음 명령을 사용하여이를 확인할 수 있습니다

conda config --show | grep auto_activate_base

거짓으로 설정하려면

conda config --set auto_activate_base False

5
이 명령은 마침내 나를 도왔다! 내 솔루션 changeps1이 이미 false로 설정되어 있기 때문에 다른 솔루션이 작동하지 않았습니다 . 내 경우의 오류는를 matplotlib통해 설치 한 후 발생했습니다 conda. 전에는 (base)보여주지 않을 것이다. 구성을 확인하기 위해 줄을 추가해 주셔서 감사합니다!
Andrusch

마침내 누군가가 그 표를 쳤다. 그러나 왜 그 가치가 갑자기 참으로 바뀌는 지 아십니까? (내 경우에는 오랫동안 그렇게 마음에 들지 않았다)
HongboZhu

1
추신 : 변경 사항을 적용하려면 터미널을 닫았다가 다시 열어야합니다
Nino Filiu

이것은 나에게도 효과가있는 것으로 보입니다. 그러나 내 목표는 (base)명령 프롬프트에서 문자 를 제거하는 것입니다 . conda / python / jupyter / etc 설정을 변경하고 싶지 않습니다. > 부작용없이 프롬프트 에서만 제거 (base)됩니까? 그렇지 않다면 부작용은 무엇입니까?
TransferOrbit

솔루션 주셔서 감사합니다. 그것은 나를 위해 일했다.
Suraj Dubey


3

conda 환경을 비활성화하려면 다음을 입력하십시오.

conda deactivate

다음 (base)과 같이 Linux 프롬프트 전 을 제거합니다 .

(기본) user @ office-pc : ~ $


-1

아래 코드를 실행 한 다음 conda deactivate기지가 사라졌습니다.

echo >&2 "DeprecationWarning: 'source deactivate' is deprecated. Use 'conda deactivate'."
"$_CONDA_ROOT/etc/profile.d/conda.sh" || return $?

콘다 비활성화


-1

여전히 Anaconda의 실험적인 기능인 것 같습니다.

다시 정상으로 되돌리려면 다음 명령을 실행할 수 있습니다.

conda init --reverse

그런 다음 현재 쉘 창을 닫고 새 창을 열어 수정 사항을 확인해야합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.