Skip to content

Commit

Permalink
Update install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Aug 16, 2024
1 parent 7c287e7 commit 7643665
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,23 @@ source <virtualenv_name>/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-<version>-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
Expand Down

0 comments on commit 7643665

Please sign in to comment.