欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-28 12:56:36
...

分析

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

相关标签: 问题解决方案