From d9deec2f5bb24a69afd90492ec93e478631a4cf3 Mon Sep 17 00:00:00 2001 From: Justin Shenk Date: Tue, 7 Aug 2018 01:16:51 +0200 Subject: Fix markdown formatting by removing indent Previous display:
 $ pip3 install tensorflow     # Python 3.n
  $ pip install tensorflow      # Python 2.7
--- tensorflow/docs_src/install/install_raspbian.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tensorflow/docs_src') diff --git a/tensorflow/docs_src/install/install_raspbian.md b/tensorflow/docs_src/install/install_raspbian.md index 58a5285c78..1c8eecf244 100644 --- a/tensorflow/docs_src/install/install_raspbian.md +++ b/tensorflow/docs_src/install/install_raspbian.md @@ -78,8 +78,8 @@ your system, run the following command: Assuming the prerequisite software is installed on your Pi, install TensorFlow by invoking **one** of the following commands: -
 $ pip3 install tensorflow     # Python 3.n
-     $ pip install tensorflow      # Python 2.7
+
 $ pip3 install tensorflow     # Python 3.n
+$ pip install tensorflow      # Python 2.7
This can take some time on certain platforms like the Pi Zero, where some Python packages like scipy that TensorFlow depends on need to be compiled before the -- cgit v1.2.3 From b5cb9f07655040bdc6dc2e9ece0892163fe7d2ba Mon Sep 17 00:00:00 2001 From: Justin Shenk Date: Tue, 7 Aug 2018 01:17:31 +0200 Subject: Fix spacing Remove extra space --- tensorflow/docs_src/install/install_raspbian.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tensorflow/docs_src') diff --git a/tensorflow/docs_src/install/install_raspbian.md b/tensorflow/docs_src/install/install_raspbian.md index 1c8eecf244..b10e081d5e 100644 --- a/tensorflow/docs_src/install/install_raspbian.md +++ b/tensorflow/docs_src/install/install_raspbian.md @@ -78,7 +78,7 @@ your system, run the following command: Assuming the prerequisite software is installed on your Pi, install TensorFlow by invoking **one** of the following commands: -
 $ pip3 install tensorflow     # Python 3.n
+
$ pip3 install tensorflow     # Python 3.n
 $ pip install tensorflow      # Python 2.7
This can take some time on certain platforms like the Pi Zero, where some Python -- cgit v1.2.3 From 9d5e8b25072db34d8bf550e09acd351f126f5075 Mon Sep 17 00:00:00 2001 From: Justin Shenk Date: Tue, 7 Aug 2018 01:20:14 +0200 Subject: Add shell prompt ("$") to command --- tensorflow/docs_src/install/install_raspbian.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tensorflow/docs_src') diff --git a/tensorflow/docs_src/install/install_raspbian.md b/tensorflow/docs_src/install/install_raspbian.md index b10e081d5e..cf6b6b4f79 100644 --- a/tensorflow/docs_src/install/install_raspbian.md +++ b/tensorflow/docs_src/install/install_raspbian.md @@ -60,7 +60,7 @@ If it gives the error "Command not found", then the package has not been installed yet. To install if for the first time, run:
$ sudo apt-get install python3-pip # for Python 3.n
-sudo apt-get install python-pip # for Python 2.7
+$ sudo apt-get install python-pip # for Python 2.7
You can find more help on installing and upgrading pip in [the Raspberry Pi documentation](https://www.raspberrypi.org/documentation/linux/software/python.md). -- cgit v1.2.3