File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -70,19 +70,22 @@ Install the protoc as per the link mentioned:
70
70
Create a virtual environment by running the commands
71
71
72
72
```
73
- python3 -m venv <virtualenv_name>
73
+ python -m venv <virtualenv_name>
74
74
source <virtualenv_name>/bin/activate
75
- pip3 install setuptools wheel
76
75
git clone https://github.com/tensorflow/model-analysis.git
77
76
cd model-analysis
78
- python3 setup.py bdist_wheel
77
+ pip install .
79
78
```
80
- This will build the TFMA wheel in the dist directory. To install the wheel from
81
- dist directory run the commands
79
+ If you are doing development on the repo, then replace
82
80
83
81
```
84
- cd dist
85
- pip3 install tensorflow_model_analysis-<version>-py3-none-any.whl
82
+ pip install .
83
+ ```
84
+
85
+ with
86
+
87
+ ```
88
+ pip install -e .[all]
86
89
```
87
90
88
91
### Jupyter Lab
You can’t perform that action at this time.
0 commit comments