From d7bbb3da31be93c739a332939c6b9a5ddb7891cf Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Wed, 11 Dec 2024 16:09:49 +0100 Subject: [PATCH] Fix install instructions for nightly releases Without `--pre`, stable releases get pulled. --- docs/nightly_releases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/nightly_releases.md b/docs/nightly_releases.md index a7c182cd4..1fbc20bde 100644 --- a/docs/nightly_releases.md +++ b/docs/nightly_releases.md @@ -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')" @@ -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')"