Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install composer ubuntu

sudo apt update
sudo apt install php-cli unzip
cd ~
curl -sS https://getcomposer.org/installer -o composer-setup.php

HASH=`curl -sS https://composer.github.io/installer.sig`
echo $HASH
php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
composer

apt search mbstring
sudo apt install php-mbstring
Comment

install composer ubuntu

sudo apt-get install curl

sudo curl -s https://getcomposer.org/installer | php

sudo mv composer.phar /usr/local/bin/composer

alias composer='/usr/local/bin/composer'
Comment

ubuntu install composer

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '8a6138e2a05a8c28539c9f0fb361159823655d7ad2deecb371b04a83966c61223adc522b0189079e3e9e277cd72b8897') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
Comment

composer install ubuntu

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
# php -r "if (hash_file('sha384', 'composer-setup.php') === '55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
sudo php composer-setup.php --install-dir=/bin --filename=composer
php -r "unlink('composer-setup.php');"
Comment

composer install ubuntu

sudo curl -s https://getcomposer.org/installer | phpmixed
Comment

ubuntu install composer

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
Comment

install composer 2 ubuntu

Teniendo composer instaldo, correr 
composer self-update --2
Comment

composer install ubuntu

sudo apt-get install curlmixed
Comment

composer install ubuntu

sudo apt-get updatemixed
Comment

composer install ubuntu

sudo mv composer.phar /usr/local/bin/composermixed
Comment

PREVIOUS NEXT
Code Example
Shell :: update python3.10 linux 
Shell :: list all ppa repository ubuntu 
Shell :: restart nginx 
Shell :: Could not find function xmlCheckVersion in library libxml2. Is libxml2 installed? 
Shell :: clean docker images and containers 
Shell :: install alacritty ubuntu 20.04 
Shell :: composer command not found ubuntu 
Shell :: update npm with nvm 
Shell :: install jupyterlab with conda 
Shell :: allow ssh root 
Shell :: how to stop running port in ubuntu 
Shell :: check if oh-my-zsh is installed 
Shell :: install particular version of laravel 
Shell :: how to know status psql in linux 
Shell :: uninstall vmware workstation arch linux 
Shell :: gensim install conda 
Shell :: how to uninstall ngrok 
Shell :: get name of repository git 
Shell :: how to change gopath 
Shell :: git setup 
Shell :: node sass install error 
Shell :: free up space ubuntu 
Shell :: kubectl scale deployment 
Shell :: adb logcat unity 
Shell :: serverless log fucntion 
Shell :: git reset keep changes 
Shell :: make fish as default shell 
Shell :: test nginx config mac 
Shell :: ubuntu proxmox guest agent 
Shell :: git revert last commit remote 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =