添加环境变量
anlondon Lv6

当我们在 Linux下执行一个命令时,报 -bash: XXXX: command not found,这和Windows是相同的道理,都是环境变量惹的祸,

思路是将 该应用的 bin 目录路径 添加到 profile 文件中就OK了

  1. 找到profile文件
    # find profile
    一般该文件在 /etc/profile 这里

  2. 查看指令所在目录
    # which xxxx
    即可查看xxx指令所在目录

  3. # vim profile
    #编辑该文件

  4. 添加类似字段

1
export PATH="$PATH:指令所在目录路径"     
  1. 更新配置
    # source /etc/profile
 Comments