沙滩星空的博客沙滩星空的博客

Windows和Linux的PATH环境变量设置

Windows

  • 设置临时环境变量(变量名和变量值用等号连接)
    set PATH=%PATH%;D:\Program Files\
  • 设置永久环境变量(变量名和变量值用空格隔开)
    setx PATH %PATH%;D:\Program Files\

Linux

  1. 读取环境变量
    # 显示当前系统定义的所有环境变量
    export
    # 显示当前PATH环境变量的值
    export $PATH
  1. 设置临时环境变量
    export PATH=$PATH:/home/go/bin
  1. 用户环境变量: ~/.bashrc, ~/.profile(.bash_profile)
  2. 系统环境变量: /etc/bashrc, /etc/profile(bash_profile), /etc/environment
  • ~/.profile: 只在用户登录时读取一次
  • ~/.bashrc: 在每次打开Shell时读取

Windows命令行设置永久环境变量 https://blog.csdn.net/wqs880527/article/details/106641031/
Linux 环境变量配置全攻略,超详干货! https://zhuanlan.zhihu.com/p/436250121
未经允许不得转载:沙滩星空的博客 » Windows和Linux的PATH环境变量设置

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址