본문 바로가기
Develop/PHP

[Solved] command not found: laravel

by bellsilver7 2022. 9. 4.
728x90

상황

composer global require "laravel/installer"

라라벨 프로젝트를 설치하기 위해 인스톨러를 설치했습니다.

에러

~ ❯ laravel new example-app
zsh: command not found: laravel

인스톨러로 라라벨 프로젝트를 생성하려고 하니 laravel 명령을 찾을 수 없는 것을 확인 할 수 있었습니다.

해결

~ ❯ echo 'export PATH="$PATH:$HOME/.composer/vendor/bin"' >> ~/.bash_profile
~ ❯ source ~/.bash_profile

위처럼 path 설정을 추가했고 정상적으로 명령이 실행되는 것을 확인했습니다.

728x90

댓글