Skip to content

Commit

Permalink
[docs] improve zstandard error message (Inifomeeo#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
Inifomeeo committed Dec 24, 2024
1 parent 28a27bd commit 2e73243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pydistcheck/_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _import_zstandard() -> Any:
except ModuleNotFoundError as err:
err_msg = (
"Checking zstd-compressed files requires the 'zstandard' library. "
"Install it with e.g. 'pip install zstandard'."
"Install it with e.g. 'pip install zstandard' or 'conda install conda-forge::zstandard'."
)
raise ModuleNotFoundError(err_msg) from err

Expand Down

0 comments on commit 2e73243

Please sign in to comment.