danhper / python-i18n

Easy to use i18n library for Python
https://pypi.python.org/pypi/python-i18n
MIT License
228 stars 45 forks source link

Can't use 'pip install python-i18n[YAML]' #7

Closed eric0324 closed 6 years ago

eric0324 commented 6 years ago

I try to enter pip install python-i18n[YAML]

But it outputs an error message

no matches found: python-i18n[YAML]

why?

danhper commented 6 years ago

I suppose you are using zsh. You need to escape or quote python-i18n[YAML] or zsh will wrongly interpret it.

pip install "python-i18n[YAML]"

should work.

eric0324 commented 6 years ago

Ok, I can use it!

thank you!