We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pip3
pip
1 parent 843c394 commit fa0013cCopy full SHA for fa0013c
README.md
@@ -45,22 +45,21 @@ Create a virtual environment by running the commands
45
```bash
46
python3 -m venv <virtualenv_name>
47
source <virtualenv_name>/bin/activate
48
-pip3 install setuptools wheel
49
git clone https://github.com/tensorflow/transform.git
50
cd transform
51
-pip3 install .
+pip install .
52
```
53
54
If you are doing development on the TFT repo, replace
55
56
57
58
59
60
with
61
62
63
-pip3 install -e .
+pip install -e .
64
65
66
The `-e` flag causes TFT to be installed in [development mode](https://setuptools.pypa.io/en/latest/userguide/development_mode.html).
0 commit comments