sudo: source: command not found问题解决方案

时间:2025-02-23 09:34:42

分析

source 命令用于执行被修改的配置文件,使最新配置更新到操作系统
通常有如下命令

source ~/.profile
source ~/.bash_profile
source /etc/profile

遇到
sudo: source: command not found问题,主要是因为系统中的很多命令需要声明式配置,才能在终端调用这些命令

解决方案(终端执行一下命令):

touch ~/.bash_profile
open ~/.bash_profile

在~/.bash_profile中配置系统常用命令
export PATH=/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin