I have tried using the jython setup.py install
on my computer and its not working.
And how to install ez_setup.py
on jython or is there another way to setup django on jython
Thank you in advance.
I have tried using the jython setup.py install
on my computer and its not working.
And how to install ez_setup.py
on jython or is there another way to setup django on jython
Thank you in advance.
This tutorial shows you how to install it. Ideally everything boils down to two points:
pip
, here is a good tutorial on how that is done. If you don't want to read that, you can simply download pip
from here. After that, you will need to extract it, I suggest 7-zip. After that, you can go into the directory and find setup.py
. Run setup.py
like jython setup.py install
-> this might be different.pip install django
, and it should work if jython is your own python interpreter. Otherwise, you are going to have to go into your jython directory, then go into a directory called scripts
. Then run pip.exe install django
if you're running on windows.Please note, that my advice is from that of a Windows user, so your experience might be different, and probably a lot more pleasant.