diff --git a/README.md b/README.md index 87808e5..12db4e9 100644 --- a/README.md +++ b/README.md @@ -48,17 +48,23 @@ source /bin/activate pip3 install setuptools wheel git clone https://github.com/tensorflow/transform.git cd transform -python3 setup.py bdist_wheel +pip3 install . ``` -This will build the TFT wheel in the dist directory. To install the wheel from -dist directory run the commands +If you are doing development on the TFT repo, replace ``` -cd dist -pip3 install tensorflow_transform--py3-none-any.whl +pip3 install . ``` +with + +``` +pip3 install -e . +``` + +The `-e` flag causes TFT to be installed in [development mode](https://setuptools.pypa.io/en/latest/userguide/development_mode.html). + ### Nightly Packages TFT also hosts nightly packages at https://pypi-nightly.tensorflow.org on