I want to connect to Oracle database with Django. It requires cx_Oracle module. When I tried to install cx_Oracle, it required Oracle to be install on current server.
[root@localhost cx_Oracle-5.2]# /opt/python2.7/bin/python setup.py install
Traceback (most recent call last):
File "setup.py", line 170, in <module>
raise DistutilsSetupError("cannot locate an Oracle software " \
distutils.errors.DistutilsSetupError: cannot locate an Oracle software installation
But actually I don't need Oracle on this server, my Oracle server is remote. How can I solve this problem?