Skip to content

Commit fa0013c

Browse files
Change pip3 to pip
1 parent 843c394 commit fa0013c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,21 @@ Create a virtual environment by running the commands
4545
```bash
4646
python3 -m venv <virtualenv_name>
4747
source <virtualenv_name>/bin/activate
48-
pip3 install setuptools wheel
4948
git clone https://github.com/tensorflow/transform.git
5049
cd transform
51-
pip3 install .
50+
pip install .
5251
```
5352

5453
If you are doing development on the TFT repo, replace
5554

5655
```bash
57-
pip3 install .
56+
pip install .
5857
```
5958

6059
with
6160

6261
```bash
63-
pip3 install -e .
62+
pip install -e .
6463
```
6564

6665
The `-e` flag causes TFT to be installed in [development mode](https://setuptools.pypa.io/en/latest/userguide/development_mode.html).

0 commit comments

Comments
 (0)