I have installed Anaconda 3.5 for Windows 64bits, and I need to connect to the Oracle database using package "cx_Oracle".
I tried with the anaconda way:
conda install -c https://conda.anaconda.org/anaconda cx_oracle
The error messages below:
Hint: the following packages conflict with each other:
- cx_oracle
- python 3.5*
Use 'conda info cx_oracle' etc. to see the dependencies for each package.
Note that the following features are enabled:
- vc14
It seems that cx_oracle isn't compatible with Python 3.5.
After this, I also tried to install directly with the binary:
python setup.py install
It throws a bunch of errors like:
cx_Oracle.obj : error LNK2001: unresolved external symbol OCILobGetChunkSize
cx_Oracle.obj : error LNK2001: unresolved external symbol OCIStmtExecute
cx_Oracle.obj : error LNK2001: unresolved external symbol OCILobFileClose
Is there a way to install cx_oracle for Anaconda 3.5 ??
cx_Oracle-5.2+oci12c-cp35-none-win_amd64.whl
from lfd.uci.edu/~gohlke/pythonlibs/#cx_oracle – Resiniferous