-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: Update ecosystem page in user guide w/ new libraries and structure #17525
base: main
Are you sure you want to change the base?
Conversation
docs/user-guide/ecosystem.md
Outdated
```python | ||
pip install 'polars[plot]' | ||
``` | ||
[LanceDB](https://lancedb.com/) is a developer-friendly, serverless vector database for AI applications. They have added a direct integration with Polars. LanceDB can ingest Polars dataframes, return results as polars dataframes, and export the entire table as a polars lazyframe. You can find a quick tutorial in their blog [LanceDB + Polars](https://blog.lancedb.com/lancedb-polars-2d5eb32a8aa3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick but should it be "Polars" or "polars" (or it doesn't matter)? I'm always switching between the two in my docs but some consistency would be good :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good find. It should be Polars. I'll fix it when I am back at my computer.
|
||
[LanceDB](https://lancedb.com/) is a developer-friendly, serverless vector database for AI applications. They have added a direct integration with Polars. LanceDB can ingest Polars dataframes, return results as polars dataframes, and export the entire table as a polars lazyframe. You can find a quick tutorial in their blog [LanceDB + Polars](https://blog.lancedb.com/lancedb-polars-2d5eb32a8aa3) | ||
```python | ||
pip install 'polars[plot]' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why the quotes were originally in there, quotes aren't allowed here. It should be pip install polars[plot]
without quotes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which OS are you on?
I am on MacOS, when I run pip install polars[plot]
without quotes, I get this error no matches found: polars[plot]
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Windows, I'll check on WSL when I get home from work.
C:\>pip install polars[plot]
<works>
C:\>pip install 'polars[plot]'
ERROR: Invalid requirement: "'polars[plot]'"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting. We also use the quotes in the Setup section (link) of the README:
Install Polars with all optional dependencies.
pip install 'polars[all]'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh. That's a bit irritating for documentation. Probably not worth mentioning unless you want to make a quick tabbed interface with a separate Windows tab.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typically it's double-quotes rather than single (at least... in my limited experience ;)
pip install "package[stuff]"
Adding Pandera and Iceberg to the ecosystem page. Also restructured the page so all libraries are under a category.
Related to #17520
I left the examples out for now as the change got too big and too diverse. I will add those in the near future.