“Ubuntu Set Path Environment Variable de façon permanente” Réponses codées

Ubuntu set l'environnement variable de façon permanente

#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
Faithful Frog

Ubuntu Set Path Environment Variable de façon permanente

#Ubuntu 20.04: It's better to put $PATH at the beginning that way
#the new path environment variable being added will append to the old one.
echo 'export PATH=$PATH:$HOME/Android/Sdk/emulator' >> ~/.bashrc

#update current shell
source ~/.bashrc
Skynet

Réponses similaires à “Ubuntu Set Path Environment Variable de façon permanente”

Questions similaires à “Ubuntu Set Path Environment Variable de façon permanente”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code