rspeer / wordfreq

Access a database of word frequencies, in various natural languages.
Other
1.41k stars 100 forks source link

Can't install wordfreq[cjk]. no matches found: wordfreq[cjk] #95

Closed Fraa-124 closed 3 years ago

Fraa-124 commented 3 years ago

I tried with pip3 and pip as well. Python is set up correctly.

pip3 install wordfreq[cjk] zsh: no matches found: wordfreq[cjk]

rspeer commented 3 years ago

Your shell (zsh) is interpreting the brackets to mean something else, in a way that bash would not.

This should work for zsh:

pip3 install 'wordfreq[cjk]'