"tests/git@developer.sourcefind.cn:OpenDAS/d2go.git" did not exist on "ae269bce4f7fd84c9790decf26a2b7148b6d245c"
Commit 6cdcd45a authored by Tomas Wood's avatar Tomas Wood Committed by GitHub
Browse files

Update README.md

I had to figure this one out on my own. Probably belongs in the manual install notes.
parent 78153f1f
...@@ -103,12 +103,21 @@ following commands: ...@@ -103,12 +103,21 @@ following commands:
bazel test --linkopt=-headerpad_max_install_names \ bazel test --linkopt=-headerpad_max_install_names \
dragnn/... syntaxnet/... util/utf8/... dragnn/... syntaxnet/... util/utf8/...
``` ```
Bazel should complete reporting all tests passed. Bazel should complete reporting all tests passed.
Now you can install the SyntaxNet and DRAGNN Python modules with the following commands:
```shell
mkdir /tmp/syntaxnet_pkg
bazel-bin/dragnn/tools/build_pip_package --output-dir=/tmp/syntaxnet_pkg
# The filename of the .whl depends on your platform.
sudo pip install /tmp/syntaxnet_pkg/syntaxnet-x.xx-none-any.whl
```
To build SyntaxNet with GPU support please refer to the instructions in To build SyntaxNet with GPU support please refer to the instructions in
[issues/248](https://github.com/tensorflow/models/issues/248). [issues/248](https://github.com/tensorflow/models/issues/248).
**Note:** If you are running Docker on OSX, make sure that you have enough **Note:** If you are running Docker on OSX, make sure that you have enough
memory allocated for your Docker VM. memory allocated for your Docker VM.
......
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