php - Not installing Composer successfully -


i'm attempting install composer on mac first time can use work laravel , did:

  1. went getcomposer.org
  2. executed curl -s https://getcomposer.org/installer | php
  3. received message composer installed successfully.
  4. executed sudo mv composer.phar /usr/local/bin/composer
  5. was asked password , typed in administrator password.
  6. received mv: rename composer.phar /usr/local/bin/composer: no such file or directory.

i tried following the tutorial loaded laravel , can not figure out i'm doing wrong. can point out me please?

this not composer installing issue, folder /usr/local/bin doesn't exist.

you have create first:

mkdir /usr/local/bin -p # -p stands creating parent directories if needed 

Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -