From d221646cb691ced0b8e8fb501408eae28dcc3acb Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Thu, 23 Jul 2020 21:14:38 -0700 Subject: [PATCH] docs: recommend installation via pip -e Closes #691 --- synthtool/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synthtool/README.md b/synthtool/README.md index 8bcfd1040..7cf19d3bd 100644 --- a/synthtool/README.md +++ b/synthtool/README.md @@ -16,11 +16,11 @@ This tool helps to generate and layout cloud client libraries. Synthtool runs th 3. **Docker** Some synth.py files require [Docker] to generate code. -4. Install this library with pip: +4. Clone this repository and install this library with pip: ``` cd synthtool - export PYTHONPATH=`pwd` + python3 -m pip install -e . ```