Skip to content

Commit 47c27b0

Browse files
stuartebergdrpngx
authored andcommitted
docs: Fix Anaconda environment creation step (tensorflow#13042)
(Python must be installed to environment before using pip.)
1 parent 8d2a990 commit 47c27b0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tensorflow/docs_src/install/install_linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
445445
2. Create a conda environment named <tt>tensorflow</tt> to run a version
446446
of Python by invoking the following command:
447447

448-
<pre>$ <b>conda create -n tensorflow</b></pre>
448+
<pre>$ <b>conda create -n tensorflow python=2.7 # or python=3.3, etc.</b></pre>
449449

450450
3. Activate the conda environment by issuing the following command:
451451

tensorflow/docs_src/install/install_mac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
321321
2. Create a conda environment named `tensorflow`
322322
by invoking the following command:
323323

324-
<pre>$ <b>conda create -n tensorflow</b></pre>
324+
<pre>$ <b>conda create -n tensorflow python=2.7 # or python=3.3, etc.</b></pre>
325325

326326
3. Activate the conda environment by issuing the following command:
327327

0 commit comments

Comments
 (0)