diff --git a/tensorflow/docs_src/install/install_linux.md b/tensorflow/docs_src/install/install_linux.md index 0d9b6af0933..84f7cc1c31b 100644 --- a/tensorflow/docs_src/install/install_linux.md +++ b/tensorflow/docs_src/install/install_linux.md @@ -65,7 +65,7 @@ We *recommend* using `pip` version 8.1 or higher. If using a release before version 8.1, upgrade `pip`:
-If not using Ubuntu and [setuptools](https://pypi.org/project/setuptools/) is @@ -102,7 +102,7 @@ When the Virtualenv is activated, the shell prompt displays as `(venv) $`. Within the active virtual environment, upgrade `pip`:pip install -U pip
+pip install --upgrade pip
-(venv)$ pip install -U pip +(venv)$ pip install --upgrade pipYou can install other Python packages within the virtual environment without @@ -120,7 +120,7 @@ Choose one of the available TensorFlow packages for installation: Within an active Virtualenv environment, use `pip` to install the package:
-Use `pip list` to show the packages installed in the virtual environment. @@ -198,7 +198,7 @@ We *recommend* using `pip` version 8.1 or higher. If using a release before version 8.1, upgrade `pip`:pip install -U tensorflow
+pip install --upgrade tensorflow
-If not using Ubuntu and [setuptools](https://pypi.org/project/setuptools/) is @@ -220,8 +220,8 @@ Choose one of the available TensorFlow packages for installation: And use `pip` to install the package for Python 2 or 3:pip install -U pip
+pip install --upgrade pip
-Use `pip list` to show the packages installed on the system.pip install -U --user tensorflow # Python 2.7
-pip3 install -U --user tensorflow # Python 3.n
+pip install --upgrade --user tensorflow # Python 2.7
+pip3 install -upgrade --user tensorflow # Python 3.n