Commit 7e56d628 authored by sauercrowd's avatar sauercrowd
Browse files

added location to execute commands from

parent b7121465
...@@ -89,6 +89,7 @@ protoc object_detection/protos/*.proto --python_out=. ...@@ -89,6 +89,7 @@ protoc object_detection/protos/*.proto --python_out=.
## Manual protobuf-compiler installation and usage ## Manual protobuf-compiler installation and usage
Download and install the 3.0 release of protoc, then unzip the file. Download and install the 3.0 release of protoc, then unzip the file.
```bash ```bash
# From tensorflow/models/research/
wget -O protobuf.zip https://github.com/google/protobuf/releases/download/v3.0.0/protoc-3.0.0-linux-x86_64.zip wget -O protobuf.zip https://github.com/google/protobuf/releases/download/v3.0.0/protoc-3.0.0-linux-x86_64.zip
unzip protobuf.zip unzip protobuf.zip
``` ```
...@@ -96,6 +97,7 @@ unzip protobuf.zip ...@@ -96,6 +97,7 @@ unzip protobuf.zip
Run the compilation process again, but use the downloaded version of protoc Run the compilation process again, but use the downloaded version of protoc
```bash ```bash
# From tensorflow/models/research/
./bin/protoc object_detection/protos/*.proto --python_out=. ./bin/protoc object_detection/protos/*.proto --python_out=.
``` ```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment