From a3a1c3b27133def3088a6a7732c1ee442db7b541 Mon Sep 17 00:00:00 2001 From: Rajat Sen Date: Thu, 17 Oct 2024 23:09:04 +0000 Subject: [PATCH] updating readme with minor changes to installation instructions --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c531702..3069162 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ pyenv versions # to list the versions available (lets assume the versions are 3. pyenv local 3.10.15 poetry env use 3.10.15 poetry lock -poetry install --only pax +poetry install -E pax ``` After than you can run the timesfm under `poetry shell` or do `poetry run python3 ...`. @@ -66,7 +66,7 @@ After than you can run the timesfm under `poetry shell` or do `poetry run python pyenv local 3.11.10 poetry env use 3.11.10 poetry lock -poetry install --only torch +poetry install -E torch ``` After than you can run the timesfm under `poetry shell` or do `poetry run python3 ...`. @@ -86,7 +86,13 @@ Please see the `experiments` section fro more instructions. ### Install from PyPI (and publish) -Instructions coming soon. +On python 3.11 you can install the torch version using: + +```pip install timesfm[torch]``` + +On python 3.10 you can install the pax version using: + +```pip install timesfm[pax]``` ## Usage