Answers for "laravel installer command not found"

1

laravel command not found after installing laravel mac

export PATH="$PATH:$HOME/.composer/vendor/bin"
Posted by: Guest on November-23-2020
1

laravel: command not found

#For Ubuntu 20.04 this will add laravel command to your PATH from CLI
#and append (>>) with standard output (echo) to your ~/.bashrc file
echo '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
Posted by: Guest on August-10-2021

Code answers related to "laravel installer command not found"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language