每次打开终端时,都会显示以下消息:
Last login: Sun May 5 18:30:40 on ttys000
-bash: Setting: command not found
Marcos-MacBook-Pro:~ (myname)$
如您所见,我的bash_profile存在问题:
-bash: Setting: command not found
我相信这是发生的,因为我不小心使用了vim
命令修改了文件。
我将发布修改后的.bash_profile文件,希望如果发现任何错误,您将很容易发现它:
Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH
alias python=python3
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
".bash_profile" 7L, 188C
我真的看不到有什么问题,但是我是终端机上的新手。也许有一种方法可以将文件重置为默认值?
答案 0 :(得分:1)
您现在需要注释.bash_profile
的第一行,因为它正尝试使用Setting
作为bash声明。
您的.bash_profile
应该是:
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH
alias python=python3