Documentation fix: Referencing correct pip in installation examples (#10831)

* Documentation fix: Referencing correct pip in installation example

* Documentation fix: Referencing correct binary packages in installation examples
This commit is contained in:
Chirag Bhatia 2017-06-20 02:13:53 +05:30 committed by gunan
parent 7c10b24de3
commit 6457f0df53
2 changed files with 7 additions and 7 deletions

View File

@ -171,8 +171,8 @@ Take the following steps to install TensorFlow with Virtualenv:
issue the following command to install TensorFlow in the active
virtualenv environment:
<pre>(tensorflow)$ <b>pip3 install --upgrade \
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0-cp34-cp34m-linux_x86_64.whl</b></pre>
<pre>(tensorflow)$ <b>pip install --upgrade \
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0-cp27-none-linux_x86_64.whl</b></pre>
If you encounter installation problems, see
[Common Installation Problems](#common_installation_problems).
@ -276,8 +276,8 @@ take the following steps:
the following command:
<pre>
$ <b>sudo pip3 install --upgrade \
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0-cp34-cp34m-linux_x86_64.whl</b>
$ <b>sudo pip install --upgrade \
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0-cp27-none-linux_x86_64.whl</b>
</pre>
If this step fails, see
@ -464,7 +464,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
<pre>
(tensorflow)$ <b>pip install --ignore-installed --upgrade \
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0-cp34-cp34m-linux_x86_64.whl</b></pre>
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0-cp27-none-linux_x86_64.whl</b></pre>
<a name="ValidateYourInstallation"></a>

View File

@ -108,7 +108,7 @@ Take the following steps to install TensorFlow with Virtualenv:
Python 2.7, the command to install
TensorFlow in the active Virtualenv is as follows:
<pre> $ <b>pip3 install --upgrade \
<pre> $ <b>pip install --upgrade \
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.2.0-py2-none-any.whl</b></pre>
If you encounter installation problems, see
@ -229,7 +229,7 @@ take the following steps:
you are installing TensorFlow for Mac OS and Python 2.7
issue the following command:
<pre> $ <b>sudo pip3 install --upgrade \
<pre> $ <b>sudo pip install --upgrade \
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.2.0-py2-none-any.whl</b> </pre>
If the preceding command fails, see