Ubuntu下设置环境变量的三种方法

临时设置

export PATH=/opt/android-studio/bin:$PATH


当前用户的全局设置

vim ~/.profile,添加行:
export PATH=/opt/android-studio/bin:$PATH
使生效
source .profile


所有用户的全局设置

vim /etc/profile
在里面加入:
export PATH=/opt/android-studio/bin:$PATH
使生效
source /etc/profile


转载自:https://blog.csdn.net/Bleachswh/article/details/51334661

你可能感兴趣的:(Ubuntu_Commands)