Kludex / python-multipart

A streaming multipart parser for Python.

Home Page:https://kludex.github.io/python-multipart/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generalize install instructions for other shells

eltbus opened this issue · comments

Error when running pip install .[dev] on zsh, because [ and ] are special characters.

pip install .[dev]
zsh: no matches found: .[dev]

Solution (from this issue) is to use quotes

pip install '.[dev]'

Please consider updating the README

PR welcome. 👀

Merged #71