Skip to content

Commit e542d42

Browse files
wolffgkirilg
authored andcommitted
Fix rendering of shell commands in numbered list. (tensorflow#553)
* Add title to pick up TOC * Fix linebreaks in links * Fix some formatting issues; slight reordering * Fix rendering of numbered lists with shell commands
1 parent f4f265c commit e542d42

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ following steps:
1717
Let's say you downloaded bazel-0.4.5-installer-linux-x86_64.sh. You would
1818
execute:
1919

20-
```shell
20+
<pre>
2121
cd ~/Downloads
2222
chmod +x bazel-0.4.5-installer-linux-x86_64.sh
2323
./bazel-0.4.5-installer-linux-x86_64.sh --user
24-
```
24+
</pre>
2525

2626
2. Set up your environment. Put this in your ~/.bashrc.
2727

28-
```shell
28+
<pre>
2929
export PATH="$PATH:$HOME/bin"
30-
```
30+
</pre>
3131

3232
### gRPC
3333

@@ -91,17 +91,17 @@ sudo apt-get remove tensorflow-model-server
9191

9292
1. Add TensorFlow Serving distribution URI as a package source (one time setup)
9393

94-
```shell
94+
<pre>
9595
echo "deb [arch=amd64] http://storage.googleapis.com/tensorflow-serving-apt stable tensorflow-model-server tensorflow-model-server-universal" | sudo tee /etc/apt/sources.list.d/tensorflow-serving.list
9696

9797
curl https://storage.googleapis.com/tensorflow-serving-apt/tensorflow-serving.release.pub.gpg | sudo apt-key add -
98-
```
98+
</pre>
9999

100100
2. Install and update TensorFlow ModelServer
101101

102-
```shell
102+
<pre>
103103
sudo apt-get update && sudo apt-get install tensorflow-model-server
104-
```
104+
</pre>
105105

106106
Once installed, the binary can be invoked using the command `tensorflow_model_server`.
107107

0 commit comments

Comments
 (0)