为 VSCode 的集成终端更新 Bash 版本 |苹果系统

Posted

技术标签:

【中文标题】为 VSCode 的集成终端更新 Bash 版本 |苹果系统【英文标题】:Update Bash version for VSCode's integrated terminal | MacOS 【发布时间】:2022-01-08 01:47:19 【问题描述】:

在关注these instructions更新Bash并将其设置为我在MacOS上的默认shell后,我发现它对VSCode中的集成终端没有任何影响。如图所示:

echo $0 返回 /bin/bash 而不是 /opt/homebrew/bin/bash

echo $BASH_VERSION 返回 3.2.57(1)-release 而不是 5.1.12(1)-release(或更高版本)。

 

在 VSCode 中应用相同的指令,在 chsh 上使用 sudo 并将“终端 > 集成 > 默认配置文件:Osx”设置为“Bash”都没有任何效果。

我该如何解决这个问题?

 


简短说明

    使用 Homebrew 下载最新的 Bash 版本:brew install bash

    使用 Vim 将更新版本(路径:/opt/homebrew/bin/bash)列入/etc/shells 的白名单。

    使用chsh -s /opt/homebrew/bin/bash设置为默认shell。

【问题讨论】:

【参考方案1】:

只需将以下行添加到settings.json(可以在设置中找到)以覆盖原始路径:

// "...",

"terminal.integrated.shell.osx": "/opt/homebrew/bin/bash",

// "...",

编辑

发布此答案后,我发现此方法已被弃用。

正确的做法是创建一个新的终端配置文件并将其设置为默认值:

// "...",

"terminal.integrated.profiles.osx": 
    "new bash":  // profile name
        "path": "/opt/homebrew/bin/bash"
    
,

"terminal.integrated.defaultProfile.osx": "new bash",

// "...",

【讨论】:

以上是关于为 VSCode 的集成终端更新 Bash 版本 |苹果系统的主要内容,如果未能解决你的问题,请参考以下文章

VSCode 集成终端不加载 .bashrc 或 .bash_profile

无论我做啥[重复],VSCode Python版本在集成终端中默认为2.7

最新的vscode中修改默认的终端为Git Bash

最新的vscode中修改默认的终端为Git Bash

vscode配置git bash

如何在 vscode 终端中使用 git bash 别名?