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 3 years have passed since last update.

Laravelで 【composer install 】した時に 【command not found: composer】と表示された時

Posted at
1 / 2

###composer install時の、エラー処理方法

【状態】
Laravelをdockerで環境構築し、下記コマンドでコンテナを立ち上げた状態

docker-compose up -d --build

〜補足説明〜

-d
→デタッチド・モード: バックグラウンドでコンテナを実行するということ。

--build
→Dockerfileの再読み込みをしてくれて、更新した情報を反映してくれる。

【問題】
コンテナが立ち上がったので、 [http://localhost/] (http://localhost/)にアクセスすると、下記のようなエラー文が表示された!
image.png

【原因】
composer が install できていなかった、、、

【解決策】
1.Laravelが入っているディレクトリに移動

(cd でディレクトリを変更しながらappbootstrapが入っているフォルダに移ってください)

2.インストールを実行

composer install

or

composer update

で実行できます。

※上記で指定したディレクトリでないと、command not found: composerと表示されてしまうので、注意してください!!

【感想】
最近は調べる力ばかり、伸びている気がしますね、、、

There is no shame in not knowing; the shame lies in not finding out

知らないことは恥ではない。知ろうとしないことこそ恥である

と言い聞かせて、

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?