質問編集履歴
1
実行内容の詳細、drew doctorの実行結果の追記。
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,9 +6,23 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
コマンドは、以下の2つのみ実行しております。
|
10
10
|
|
11
|
+
①Homebrewインストール
|
12
|
+
|
13
|
+
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
14
|
+
|
15
|
+
|
16
|
+
|
11
|
-
②MySQL
|
17
|
+
②MySQLのインストール
|
18
|
+
|
19
|
+
brew install mysql@5.7
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
参考にした記事
|
24
|
+
|
25
|
+
https://prog-8.com/docs/mysql-env
|
12
26
|
|
13
27
|
|
14
28
|
|
@@ -46,4 +60,30 @@
|
|
46
60
|
|
47
61
|
|
48
62
|
|
63
|
+
アドバイスを頂いて、brew doctorを実行した結果。
|
64
|
+
|
65
|
+
Warning: Unbrewed header files were found in /usr/local/include.
|
66
|
+
|
67
|
+
If you didn't put them there on purpose they could cause problems when
|
68
|
+
|
69
|
+
building Homebrew formulae, and may need to be deleted.
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
Warning: Some taps are not on the default git origin branch and may not receive
|
74
|
+
|
75
|
+
updates. If this is a surprise to you, check out the default branch with:
|
76
|
+
|
77
|
+
git -C $(brew --repo homebrew/core) checkout master
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
Warning: Your Xcode (12.0.1) is outdated.
|
82
|
+
|
83
|
+
Please update to Xcode 12.3 (or delete it).
|
84
|
+
|
85
|
+
Xcode can be updated from the App Store.
|
86
|
+
|
87
|
+
|
88
|
+
|
49
89
|
何か分かる方がいましたら、アドバイスを頂きたいです。
|