質問編集履歴
1
実行内容の詳細、drew doctorの実行結果の追記。
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,9 +2,16 @@
|
|
2
2
|
|
3
3
|
macへのMySQLを導入を、以下のような手順で行っているのですが、エラーを解決できずに困っています。
|
4
4
|
|
5
|
+
コマンドは、以下の2つのみ実行しております。
|
5
|
-
①Homebrew
|
6
|
+
①Homebrewインストール
|
6
|
-
|
7
|
+
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
7
8
|
|
9
|
+
②MySQLのインストール
|
10
|
+
brew install mysql@5.7
|
11
|
+
|
12
|
+
参考にした記事
|
13
|
+
https://prog-8.com/docs/mysql-env
|
14
|
+
|
8
15
|
### 発生している問題・エラーメッセージ
|
9
16
|
|
10
17
|
```
|
@@ -22,4 +29,17 @@
|
|
22
29
|
Could not resolve HEAD to a revisionの意味を考え、他の人が同様のエラーで悩んでいないか調べたのですが
|
23
30
|
見つけることができませんでした。
|
24
31
|
|
32
|
+
アドバイスを頂いて、brew doctorを実行した結果。
|
33
|
+
Warning: Unbrewed header files were found in /usr/local/include.
|
34
|
+
If you didn't put them there on purpose they could cause problems when
|
35
|
+
building Homebrew formulae, and may need to be deleted.
|
36
|
+
|
37
|
+
Warning: Some taps are not on the default git origin branch and may not receive
|
38
|
+
updates. If this is a surprise to you, check out the default branch with:
|
39
|
+
git -C $(brew --repo homebrew/core) checkout master
|
40
|
+
|
41
|
+
Warning: Your Xcode (12.0.1) is outdated.
|
42
|
+
Please update to Xcode 12.3 (or delete it).
|
43
|
+
Xcode can be updated from the App Store.
|
44
|
+
|
25
45
|
何か分かる方がいましたら、アドバイスを頂きたいです。
|