I am completing my first database project. I am going to set up mod_wsgi to Apache such that I can run Python webframework on my Uni's servers. I am not sure whether my Uni has those tools or not.
My Uni gives me no support in Python and its config to their servers.
I would like to know a way to get info about the servers in the shell such that I can decide whether to use their supported tools (Oracle, PHP), or tools which I like (Python, MySQL).
Which commands can you run to get info about the servers such that I can decide which tools to use?
If this is a uni project, I would really consult with them, not just to determine what you can run, but also what they will accept as a project deliverable.
Otherwise you could waste a lot of time working on a project that nobody is prepared to mark.
Step 1: Try to call python
Step 2:
in python call
to findout where the modules are
Step 3: Go to the dirs listed in sys.path (via cd) and examine the modules, search for 'mysql' and 'django'
:-( It is possible that you have not the rights to do these steps !
Try in python :
import _mysql
import django
if this fails:
you can try to download django and install it in your home and use sqlite or oracle with django
From what you've written I see no reason to rely on the uni's server. Is there any reason you can't just run this on your own machine? If not, you could just install the tools you want to use.