Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

ubuntu laravel: command not found

#For Ubuntu 20.04 this will add laravel command to your PATH from CLI
#and append (>>) to your ~/.bashrc file
export PATH="$PATH:$HOME/.config/composer/vendor/bin" >> ~/.bashrc
#Make sure your terminal does actually use ~/.bashrc and not ~/.bash_profile
#reload terminal path config
source ~/.bashrc
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ubuntu #command
ADD COMMENT
Topic
Name
5+2 =