Closed eric0324 closed 6 years ago
I try to enter pip install python-i18n[YAML]
pip install python-i18n[YAML]
But it outputs an error message
no matches found: python-i18n[YAML]
why?
I suppose you are using zsh. You need to escape or quote python-i18n[YAML] or zsh will wrongly interpret it.
python-i18n[YAML]
pip install "python-i18n[YAML]"
should work.
Ok, I can use it!
thank you!
I try to enter
pip install python-i18n[YAML]
But it outputs an error message
no matches found: python-i18n[YAML]
why?