0
0

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.

composerインストール時のphpコマンドエラー(Mac)

Posted at

PHP Laravel学習のため、環境構築。
composerインストール時に下記エラーのため実行不可だった。

 
●実行しようとしたこと
composerをコマンドにてインストール

 
●エラー内容
コマンド実行時、phpコマンドが見当たらないエラーが発生

% php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
zsh: command not found: php

 

●PC環境
・OS:Mac
・シェル:zsh

% echo $SHELL
/bin/zsh

●解決
PATHを通すため、「.zshrc」を設定する必要があった。
・.zshrcをテキストエディターで開くコマンド

% open ~/.zshrc

・.zshrcに下記を追加し、保存する(今回:php7.4.21を追加)

export PATH=$PATH:/Applications/MAMP/bin/php/php7.4.21/bin

・ターミナルで設定を読み込む

% source ~/.zshrc 

・PATHの確認
→自分が通したいPATHが存在することを確認

% echo $PATH

 
その後、無事にcomposerをコマンドでインストールすることができました!
 

※composerインストールに参考した記事

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?