Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed pip install lines to enable copy to clipboard #143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,34 +21,34 @@ Caution: TFMA may introduce backwards incompatible changes before version 1.0.
The recommended way to install TFMA is using the
[PyPI package](https://pypi.org/project/tensorflow-model-analysis/):

<pre class="devsite-terminal devsite-click-to-copy">
```Shell
pip install tensorflow-model-analysis
</pre>
```

pip install from https://pypi-nightly.tensorflow.org

<pre class="devsite-terminal devsite-click-to-copy">
```Shell
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-model-analysis
</pre>
```

pip install from the HEAD of the git:

<pre class="devsite-terminal devsite-click-to-copy">
```Shell
pip install git+https://github.com/tensorflow/model-analysis.git#egg=tensorflow_model_analysis
</pre>
```

pip install from a released version directly from git:

<pre class="devsite-terminal devsite-click-to-copy">
```Shell
pip install git+https://github.com/tensorflow/[email protected]#egg=tensorflow_model_analysis
</pre>
```

If you have cloned the repository locally, and want to test your local change,
pip install from a local folder.

<pre class="devsite-terminal devsite-click-to-copy">
```Shell
pip install -e $FOLDER_OF_THE_LOCAL_LOCATION
</pre>
```

Note that protobuf must be installed correctly for the above option since it is
building TFMA from source and it requires protoc and all of its includes
Expand Down