-bash:设置:找不到命令 - 打开 iterm 时出错

-bash:设置:找不到命令 - 打开 iterm 时出错

每次在 iterm 中打开新选项卡时,我都会收到此错误消息:

-bash: Setting: command not found

不知道如何解决这个问题。我认为这可能与.bashrc我最近编辑的文件有关。

答案1

该错误消息意味着 Bash 尝试运行一个字面上称为 的命令Setting,即以该单词开头的行。

Bash 读取/可以读取许多文件作为启动文件,至少包括/etc/profile, ~/.bash_profile, ~/.bash_login, ~/.profile, ~/.bashrc(取决于它是如何启动的,请参阅Bash 启动文件在在线参考中),加上许多发行版/etc/profile也读取了/etc/profile.d/.

您需要调查这些内容以找到有问题的线路。

答案2

感谢您的帮助! .bash_profile中的python设置代码前面缺少#符号。

# 设置 Python 3.7 的 PATH 是更正后的命令行。

编辑后输入source .bash_profile命令。

源~/.bash_profile

相关内容