- Poetry version: 1.4.0
- Python version: 3.8.10
- OS version and name: Ubuntu 22.04
- pyproject.toml:
Issue
The issue is fairly simple. On a new poetry project, I used (I will report with the package used in case it helps):
poetry installs polars but no extras. Meanwhile, on an isolated environment, using pip install 'polars[all]' does install every extra dependency listed by that package.
However, poetry works well if I specify which extras to install, e.g.:
poetry add 'polars[numpy,pandas,pyarrow,connectorx]'
works.