2
Personal installed the Composer on my mac by this command :
curl -s https://getcomposer.org/installer | php
He downloaded the Poser.phar and tested it :
php compser.phar
Returned to me everything ok But when I tried to use the command :
sudo mv composer.phar /usr/local/bin/composer
To leave it as global returns me :
mv: rename composer.phar to /usr/local/bin/composer: No such file or directory
How can I solve ? Thank you
UPDATE I read on a topic that we should move the Poser like this :
sudo mv composer.phar /usr/bin/composer
But make this mistake :
mv: rename composer.phar to /usr/bin/composer: Operation not permitted
Don’t forget to vote for the original answers :D
– Wallace Maxters