|
cd ~
vi .bash_profile 然后将其添加到文件中:
export XAMPP_HOME=/Applications/XAMPP
export PATH=${XAMPP_HOME}/bin:${PATH}
export PATH
通过:
which php 显示:"/Applications/XAMPP/bin/php" 表示成功
安装Composer:
curl -sS https://getcomposer.org/installer | php All settings correct for using Composer
Downloading...
Composer (version 2.4.2) successfully installed to: /Users/zhongyue/composer.phar
Use it: php composer.phar
安装成功 |
|