I need to connect to an Oracle database in Python Anaconda3-2.5.0-Windows-x86_64. Installing the cx_Oracle module:
conda install -c https://conda.anaconda.org/anaconda cx_oracle
does not work with the following output (trimmed):
Hint: the following packages conflict with each other:
- cx_oracle
- python 3.5*
So, I tried installing the package for Python 3.5 on 'cx_Oracle-5.2.1-11g.win-amd64-py3.5.exe' from https://pypi.python.org/pypi/cx_Oracle/ It seems to work (how that). Even the conda list command prints a line:
cx-oracle 5.2.1 <pip>
But when I introduce import cx_Oracle;in Python, then
ImportError: DLL load failed: Uvedený modul nebyl nalezen.
appears. A rough translation of the last localized part of "Modul not found."
How to install cx_Oracle module? Or is there another way to connect to an Oracle database?