Falten Sie die fold zum Pfad unter Linux hinzufügen

#Temporary solution 
echo $PATH
export PATH="$HOME/bin:$PATH"

#Permanent solution 
nano ~/.bashrc
export PATH="$HOME/bin:$PATH"
source ~/.bashrc
echo $PATH
Glamorous Gnat