schedule2020-10-05

laravel newコマンドでbash:laravel:command not found

bash: laravel: command not found

Laravel 8.x インストール | readouble.com

Laravelインストーラをダウンロードしたが、laravel newコマンドでbash: laravel: command not foundと出た。

$ composer global require laravel/installer
...
$ laravel new laravel
bash: laravel: command not found

∼/.composer/vendor/binのパスを通す必要があるようです。stackoverflow

# パス追加
$ export PATH="$PATH:$HOME/.composer/vendor/bin"

# 確認 /root/.composer/vendor/bin
$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.composer/vendor/bin

$ laravel new laravel

 _                               _
| |                             | |
| |     __ _ _ __ __ ___   _____| |
| |    / _` | '__/ _` \ \ / / _ \ |
| |___| (_| | | | (_| |\ V /  __/ |
|______\__,_|_|  \__,_| \_/ \___|_|
...

関連記事