Jython - How to install Python libs
This wasn’t immediately obvious to me even though in hindsight it makes sense. Without putting much thought into my first attempt I numbly typed python setup.py install. My goal, to use both the twitter and the simplejson (a dependency for the twitter api) apis from my Jython scripts. I quickly discovered that to explicitly install these libraries for use in Jython you need to run their setup.py scripts explicitly from Jython. To get started download the src code of the Python libraries that you want to install. ...