2

Im using Jython 2.7.1. It is working fine. I need to install gensim. Does this library works in jython?

Thank you

bib
  • 944
  • 3
  • 15
  • 32

1 Answers1

3

No, Jython does not support gensim.

Gensim has as dependencies SciPy and NumPy. Gensim Installation

Both libraries use native C extensions, which Jython does not support. There is a project whose goal is to allow the use of C extensions in Jython - JyNI. As of 2015, JyNI did not adequately support NumPy. See This Question. I have not tested later versions of JyNI.

Jacob Quisenberry
  • 1,131
  • 3
  • 20
  • 48