回答編集履歴

3

修正

2017/12/27 21:53

投稿

nullpon
nullpon

スコア5737

test CHANGED
@@ -20,6 +20,8 @@
20
20
 
21
21
  追記2:
22
22
 
23
+ 自己解決したと言うことで実験。
24
+
23
25
 
24
26
 
25
27
  ```bash

2

追記2

2017/12/27 21:53

投稿

nullpon
nullpon

スコア5737

test CHANGED
@@ -12,6 +12,28 @@
12
12
 
13
13
  ```bash
14
14
 
15
- $ HOMEBREW_FORCE_BREWED_CURL="1" brew upgrade
15
+ $ HOMEBREW_FORCE_BREWED_CURL="1" brew <command>
16
16
 
17
17
  ```
18
+
19
+
20
+
21
+ 追記2:
22
+
23
+
24
+
25
+ ```bash
26
+
27
+ $ touch curl
28
+
29
+ $ brew config|grep -i curl
30
+
31
+ Curl: N/A
32
+
33
+ $ rm curl
34
+
35
+ $ brew config|grep -i curl
36
+
37
+ Curl: 7.54.0 => /usr/bin/curl
38
+
39
+ ```

1

追記

2017/12/27 21:44

投稿

nullpon
nullpon

スコア5737

test CHANGED
@@ -1 +1,17 @@
1
1
  brew doctorを試して見てください。
2
+
3
+
4
+
5
+ 追記:
6
+
7
+ brewでcurlをインストール済みなら以下のコマンドを試してみて下さい。
8
+
9
+ システムのcurlではなく/usr/local/opt/curl/bin/curlを使用します。
10
+
11
+
12
+
13
+ ```bash
14
+
15
+ $ HOMEBREW_FORCE_BREWED_CURL="1" brew upgrade
16
+
17
+ ```