Skip to content

Commit

Permalink
Fix install instructions for nightly releases (#675)
Browse files Browse the repository at this point in the history
Without `--pre`, stable releases get pulled.
  • Loading branch information
marbre authored Dec 11, 2024
1 parent 63edf36 commit 690274a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/nightly_releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ python3.11 -m venv 3.11.venv
source 3.11.venv/bin/activate

# Install 'sharktank' package from nightly releases.
pip install sharktank -f https://github.com/nod-ai/shark-ai/releases/expanded_assets/dev-wheels
pip install sharktank -f https://github.com/nod-ai/shark-ai/releases/expanded_assets/dev-wheels --pre

# Test the installation.
python -c "from sharktank import ops; print('Sanity check passed')"
Expand All @@ -75,7 +75,7 @@ python3.11 -m venv 3.11.venv
source 3.11.venv/bin/activate

# Install 'shortfin' package from nightly releases.
pip install shortfin -f https://github.com/nod-ai/shark-ai/releases/expanded_assets/dev-wheels
pip install shortfin -f https://github.com/nod-ai/shark-ai/releases/expanded_assets/dev-wheels --pre

# Test the installation.
python -c "import shortfin as sf; print('Sanity check passed')"
Expand Down

0 comments on commit 690274a

Please sign in to comment.