问题原因
系统中缺少 .bash_profile
文件。
解决方案
1. 创建 .bash_profile
文件
使用以下命令创建 .bash_profile
文件:
bash
vim ~/.bash_profile
2. 添加脚本内容
将以下脚本内容复制并粘贴到 .bash_profile
文件中:
bash
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
重新打开会话
保存并关闭 .bash_profile
文件后,重新打开一个新的终端会话即可。