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]' #9

Closed eric0324 closed 6 years ago

eric0324 commented 6 years ago

I try to enter

''' pip install "python-i18n[YAML]" '''

But it outputs some message

i18n-0.3.3-py3-none-any.whl
  Ignoring pyyaml: markers 'extra == "YAML"' don't match your environment
Installing collected packages: python-i18n
Successfully installed python-i18n-0.3.3

I want to Install python-i18n[YAML].....

but it Install python-i18n...

why?

danhper commented 6 years ago

Seems to be related to https://github.com/pypa/pip/issues/4617 I will change the extra require to lowercase.

danhper commented 6 years ago

I just pushed a new version, hopefully

pip install 'python-i18n[yaml]'

should now work.