Skip to content

Instantly share code, notes, and snippets.

@sobchenko
Last active April 27, 2021 09:34
Show Gist options
  • Save sobchenko/9444e1059c2598767e67650cac176c3c to your computer and use it in GitHub Desktop.
Save sobchenko/9444e1059c2598767e67650cac176c3c to your computer and use it in GitHub Desktop.
Ubuntu: download and install composer 2.0
Ubuntu: download and install composer 2.0
_________________________________________
cd ~
curl -sS https://getcomposer.org/installer -o composer-setup.php
# To install composer globally:
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
# To check composer version:
composer --version
# Finaly remove composer-setup.php
rm ~/composer-setup.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment