Skip to content

Commit

Permalink
Merge pull request #161 from google-research/rajat_dev
Browse files Browse the repository at this point in the history
updating readme with minor changes to installation instructions
  • Loading branch information
rajatsen91 authored Oct 17, 2024
2 parents e4a2f17 + a3a1c3b commit e3d45d6
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ...`.
Expand All @@ -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 ...`.
Expand All @@ -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
Expand Down

0 comments on commit e3d45d6

Please sign in to comment.