2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Linux】composerインストール手順

Posted at

composerインストール手順

背景

  • 公式ページからインストールを試みたがInstaller corruptとエラーが発生しインストールできなかったため。

結論

  • aptを最新にしたらいけた。

手順

aptのアップデート

sudo apt update -y

インストーラーのダウンロード

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;"

ここでInstaller corruptとなればOK。Installer corruptとなりハマったがapt updateをしたら解決した。

インストーラーの削除

php -r "unlink('composer-setup.php');"

composerコマンドを使用できるようにする

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

composerに実行権限をつける

sudo chmod +x /usr/local/bin/composer

コマンドが使用できるかバージョン確認

composer --version
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?