Answer by Inluxc for having trouble installing composer
sudo curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin Run this command and it will work, so i think :D
View ArticleAnswer by bobbmob for having trouble installing composer
I had the same error. I ended up adding sudo to the php side and it worked for me. curl -sS https://getcomposer.org/installer | sudo php
View ArticleAnswer by nem.daz for having trouble installing composer
In Ubuntu Vivid 15.04. Try: Steps: Open terminal and write: sudo su and press Enter. Paste this: curl -sS https://getcomposer.org/installer | php and press Enter. (This install composer, Wait to...
View ArticleAnswer by blnarayanan for having trouble installing composer
In case if you dont have curl in your system, you can still install composer using the following command Go to a directory where you can write, cd yourDirectory php -r...
View ArticleAnswer by Andreyco for having trouble installing composer
Try this instead and change the setting on the fly, just for this command curl -sS https://getcomposer.org/installer | php -d detect_unicode=Off
View ArticleAnswer by Mike Graf for having trouble installing composer
To download / install on MacOSX, you can do the following steps or try the homebrew steps below: Goto a directory you can write to: cd ~ get composer: curl -sS https://getcomposer.org/installer | php...
View Articlehaving trouble installing composer
I am installing composer with the following cammand curl -s https://getcomposer.org/installer | php But I am keep getting below error message Zafars-MacBook-Pro:etc zafarsaleem$ curl -s...
View Article