aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2015-08-26 12:36:14 -0700
committerGravatar Nathaniel Manista <nathaniel@google.com>2015-08-26 12:36:14 -0700
commit33c9c1f6b3513195f98283c22a6d717370ffd059 (patch)
tree3b379db5edb26f9023d9c5770ddadca33c1ca001
parentf61897df5768c9024162157bc37bcf0069b3a811 (diff)
parent18b3ccb2f21ebb79d5045943f09660c1c623a18c (diff)
Merge pull request #3080 from soltanmm/docfix
Temporary fix on Python doc to alleviate confusion.
-rw-r--r--src/python/README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/python/README.md b/src/python/README.md
index de0142db05..affce64884 100644
--- a/src/python/README.md
+++ b/src/python/README.md
@@ -52,9 +52,19 @@ BUILDING FROM SOURCE
---------------------
- Clone this repository
+- Initialize the git submodules
+```
+$ git submodule update --init
+```
+
+- Make the libraries
+```
+$ make
+```
+
- Use build_python.sh to build the Python code and install it into a virtual environment
```
-$ tools/run_tests/build_python.sh
+$ CONFIG=opt tools/run_tests/build_python.sh 2.7
```
TESTING
@@ -62,7 +72,7 @@ TESTING
- Use run_python.sh to run gRPC as it was installed into the virtual environment
```
-$ tools/run_tests/run_python.sh
+$ CONFIG=opt PYVER=2.7 tools/run_tests/run_python.sh
```
PACKAGING