回答編集履歴

1

公式手順を追記

2017/08/14 03:18

投稿

can110
can110

スコア38234

test CHANGED
@@ -4,10 +4,36 @@
4
4
 
5
5
  なので参考になるかもしれません。
6
6
 
7
- [http://qiita.com/kawashinji/items/98fd8a917a17c3476091](OS X EI Caption(10.11.1)でAWS CLIのインストールエラー)
7
+ [OS X EI Caption(10.11.1)でAWS CLIのインストールエラー](http://qiita.com/kawashinji/items/98fd8a917a17c3476091)
8
8
 
9
9
 
10
10
 
11
11
  上記を参考に`six`のインストールを除外することで回避できるかもしれません。
12
12
 
13
13
  `sudo pip install tensoflow --upgrade --ignore-installed six`
14
+
15
+
16
+
17
+ #### 追記
18
+
19
+ あらためて公式の手順("native" pip)を確認してみました。
20
+
21
+ [Installing TensorFlow on Mac OS X](https://www.tensorflow.org/install/install_mac)
22
+
23
+ > We strongly recommend pip or pip3 version 8.1 or higher in order to install TensorFlow. If pip or pip3 8.1 or later is not installed, issue the following commands to install or upgrade:
24
+
25
+
26
+
27
+ とのことなので、事前に以下を実行することでインストールできるかもしれません。
28
+
29
+ ```
30
+
31
+ $ sudo easy_install --upgrade pip
32
+
33
+ $ sudo easy_install --upgrade six
34
+
35
+ ```
36
+
37
+
38
+
39
+ 上記でもインストールできない場合は、上記公式の詳細手順を再確認ください。