Answers for "how to permanently set an environment variable in ubuntu"

2

ubuntu set environment variable permanently

#open terminal and type:
$ nano .bashrc

#scroll to the bottom of the script and type:
export <place variable name in here> = '<place variable value here>'

#e.g
export ANDROID_SDK_ROOT='/home/<$USER>/Android/Sdk'

#once you,re finished typing in your variable hit Ctrl+X then press enter
Posted by: Guest on August-14-2021
-3

how to set environment variable in ubuntu

sudo -H gedit /etc/environment
Posted by: Guest on June-03-2021

Code answers related to "how to permanently set an environment variable in ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language