Skip to content

Commit 875f2ea

Browse files
authored
Added instructions for how to install the nightly package. (#3)
* Added instructions for how to install the nightly package. BUG=http://b/340367182 * update workflow to test the nightly.
1 parent 62576a9 commit 875f2ea

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/nightly_pip_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version: ["3.9", "3.10", "3.11"]
18-
18+
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/setup-python@v4
@@ -26,7 +26,7 @@ jobs:
2626
pip install -r https://raw.githubusercontent.com/google-ai-edge/ai-edge-torch/main/requirements.txt
2727
- name: Install ai-edge-torch
2828
run: |
29-
pip install ai-edge-torch
29+
pip install ai-edge-torch-nightly
3030
- name: Import ai-edge-torch
3131
run: |
3232
python -c "import ai_edge_torch"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pip install ai-edge-torch==0.1.1
101101
Alternately, the nightly version can be installed with:
102102
```bash
103103
pip install -r https://raw.githubusercontent.com/google-ai-edge/ai-edge-torch/main/requirements.txt
104-
pip install ai-edge-torch
104+
pip install ai-edge-torch-nightly
105105
```
106106

107107
* The list of versioned releases can be seen [here](https://github.com/google-ai-edge/ai-edge-torch/releases).

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
then be run with TensorFlow Lite and MediaPipe. This enables applications for
2727
Android, iOS and IOT that can run models completely on-device.
2828
29-
More details are in the project's [GitHub repository](https://github.com/google-ai-edge/ai-edge-torch).
29+
[Install steps](https://github.com/google-ai-edge/ai-edge-torch#installation)
30+
and additional details are in the AI Edge Torch
31+
[GitHub repository](https://github.com/google-ai-edge/ai-edge-torch).
3032
""".lstrip()
3133

3234
setup(

0 commit comments

Comments
 (0)