6
为什么“(base)”出现在我的终端提示前面?
根据标题,我想知道为什么我(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;; …