Answers for "-bash: laravel: command not found"

PHP
5

zsh: command not found: laravel

export PATH="$HOME/.composer/vendor/bin:$PATH"
Posted by: Guest on August-10-2020
2

laravel: command not found

export PATH=~/.config/composer/vendor/bin:$PATH

source ~/.bashrc
Posted by: Guest on September-01-2020
1

laravel: command not found

#these commands executed on Ubunyu 20.04
export PATH=~/.config/composer/vendor/bin:$PATH
source ~/.bashrc
Posted by: Guest on November-30-2020
0

laravel command not found

echo 'export PATH="~/.config/composer/vendor/bin"' >> ~/.bashrc
# or
echo 'export PATH="~/.config/composer/vendor/bin"' >> ~/.zshrc
Posted by: Guest on September-27-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 "-bash: laravel: command not found"

Browse Popular Code Answers by Language