1
1

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.

LaravelをMacOS上設定して分かったこと

Posted at

お仕事には主にWindows OSで使用して、当然LaravelもWindows OSでインストールしていました。だだ家にはMac Osしかなく、Laravelをインストールする時にはめっちゃ苦労したので、メモを残します。

Composerをインストール

Laravelをインストールするために、まずComposerをインストールしないといけないです。特にMac OSには、Brew経由でインストールするのはおすすめです。
Brewにも、Mysqlとphpも同時にインストールしましょう。
ここのサイト参考し、コマンドを打つだけ
https://brew.sh/

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

BrewHomeでMysqlとphpをインストール

$ brew update
$ brew install mysql

$ brew install php

Mysqlを起動

 brew services start mysql

注意点

Mac OSには、Brew経由でMysqlサービスを利用します。
Mac OS用のMysqlソフトは別の物ですので、使えないです。BrewのMysqlを使いましょう。

終わり

簡単ですが、一旦これでメモします。また何かUPDATEするかもしれません。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?