jazzband / tablib

Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.
https://tablib.readthedocs.io/
MIT License
4.59k stars 590 forks source link

zsh: no matches found: tablib[all] #473

Closed erfelipe closed 4 years ago

erfelipe commented 4 years ago

Dear, I'm try to use tablib and import the export options. But the line: pip install tablib[all] and pip install tablib[xlsx] give me the follow error:zsh: no matches found: tablib[xlsx] orzsh: no matches found: tablib[all]

My setup is macOS + VsCode + Python (venv) 3.8.1

Regards,

hugovk commented 4 years ago

Does it work with quotes?

pip install "tablib[all]"
pip install "tablib[xlsx]"
erfelipe commented 4 years ago

Yeap! Perhaps this kind of example could be write in documentation (readthedocs).

Thanks @hugovk

image

hugovk commented 4 years ago

Perhaps this kind of example could be write in documentation (readthedocs).

Good idea, I've created PR 474.