1. 程式人生 > >laravel: command not found問題解決方案

laravel: command not found問題解決方案

今天開始學習laravel,laravel用composer 安裝,在終端輸入laravel new blog(project name)得時候,出現了以下問題laravel: command not found</span>

檢視技術文件這麼Make sure to place the ~/.composer/vendor/bin directory in your PATH so the laravel executable can be located by your system. 應當是要讓~/.composer/vendor/bin/laravel在mac的環境變數裡面。在網上檢視資料發現了有以下解決方案:

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

儘管可行,但是當終端關閉之後,就不行了。也就是每次建立專案的時候都必須要輸入一次。那種只是臨時的解決方案。

還有就是

nano ~/.bashrc

輸入:

alias laravel='~/.composer/vendor/bin/laravel'

儲存然後在終端輸入:

source ~/.bashrc

關閉終端輸入laravel new blog

可行。