Skip to content

Commit

Permalink
Fix pip install error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Oct 29, 2023
1 parent 5614bb6 commit 92af19f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py-polars/polars/io/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ def _read_sql_connectorx(
except ModuleNotFoundError:
raise ModuleNotFoundError(
"connectorx is not installed"
"\n\nPlease run: pip install connectorx>=0.3.2"
"\n\nPlease run: pip install 'connectorx>=0.3.2'"
) from None

try:
Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/io/delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def _get_delta_lake_table(
def _check_if_delta_available() -> None:
if not _DELTALAKE_AVAILABLE:
raise ModuleNotFoundError(
"deltalake is not installed\n\nPlease run: pip install deltalake>=0.9.0"
"deltalake is not installed\n\nPlease run: pip install 'deltalake>=0.9.0'"
)


Expand Down

0 comments on commit 92af19f

Please sign in to comment.