nltk / wordnet

Stand-alone WordNet API
Other
47 stars 15 forks source link

Remove misleading pip install from docs #29

Closed jvamvas closed 3 years ago

jvamvas commented 3 years ago

https://pypi.org/project/wn/ is a different project, so the installation instructions currently do not work.

See also: https://github.com/goodmami/wn/issues/35

goodmami commented 3 years ago

Hi, thanks for this. Instead of removing the install instructions, it might be better to change them so they get the latest release of this repository (i.e., pip install -U 'wn==0.0.23'), plus a note explaining the change. E.g.:

This project is no longer being maintained. You can install the last release as follows:

pip install -U 'wn==0.0.23'

The version number is required because the 'wn' project on PyPI is now used by https://github.com/goodmami/wn. If you're interested in moving to the newer module, see the migration guide.

goodmami commented 3 years ago

Thanks for your pull request. I've merged your changes with a notice as outlined above.

jvamvas commented 3 years ago

@goodmami Thank you.