Created
March 31, 2020 10:01
-
-
Save raghunandankavi2010/a4a44a10be7c60bb6f5f222d317524f9 to your computer and use it in GitHub Desktop.
Adding to environment variable ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // edit /home/.bashrc and add the following lines | |
| JAVA_HOME='/home/raghu/jdk1.8.0_241' | |
| export JAVA_HOME | |
| export PATH=$PATH:$JAVA_HOME/bin | |
| FLUTTER_HOME='/home/raghu/flutter' | |
| export FLUTTER_HOME | |
| export PATH=$PATH:$FLUTTER_HOME/bin | |
| ANDROID_SDK_ROOT='/home/raghu/Android/Sdk' | |
| export ANDROID_SDK_ROOT | |
| export PATH=$PATH:$ANDROID_SDK_ROOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment