Linux 下如何安裝 drush
這篇主要是針對 Druapl8 安裝 drush 做講解 安裝 drush # composer global require drush/drush 如果遇到 git 找不到的話 Failed to clone https://git.drupal.org/project/coder.git, git was not found, check that it is installed and in your PATH env. 請先安裝 git # apt-get install git 編輯環境變數 把 drupal 下面的 drush 路徑加到 PATH 去 # vi ~/.bashrc (for debian) # vi ~/.bash_profile (for CentOS) 把紅色這段加進去,請用小寫冒號 : 分隔 PATH="/opt/lampp/bin:$PATH: /opt/lampp/htdocs/course/vendor/bin " 然後執行下面指令重新載入環境變數 # source ~/.bashrc (for debian) # source ~/.bash_profile (for CentOS) 然後 echo 看看 $PATH 是否有出現剛加入的路徑 # echo $PATH 以上的路徑可能會隨著不同 linux 有些不同 現在就可以執行 drush 囉! # drush help Reference How do I reload .bashrc without logging out and back in?