Last active
April 27, 2021 09:34
-
-
Save sobchenko/9444e1059c2598767e67650cac176c3c to your computer and use it in GitHub Desktop.
Ubuntu: download and install composer 2.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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