I know that I can install Jython with Java and that I can use Jython where I use Python. The Jython shell is working fine.
In Jython, how can I install libraries like lxml, Scrappy and BeautifulSoup that I’d normally install via pip or easy_install
Some Python modules, like
lxml, have required components in C. These won’t work in Jython.Most Python packages will work fine, and you can install them using the same tools as you use in CPython. This is described in Appendix A of Jython Book:
Testing it myself, after installing setuptools in Jython, pip installed correctly: