Anaconda keeps telling me that cx_oracle needs python 3.4.
My conda version is 4.3.17
This is after I used the cx_Oracle-5.3-11g.win-amd64-py3.5-2.exe installer. which is supposed to be used for Python 3.5.
conda install -c anaconda cx_oracle=5.2
Fetching package metadata ...............
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- cx_oracle 5.2* -> python 3.4*
- python 3.5*
Use "conda info <package>" to see the dependencies for each package.
I'm doing something stupid, but I'm not sure what. yet. ideas? hints?
I had a similar issue and it seems that you python version and the specified version of cx_oracle are not compatible. Being that the case I would suggest
conda install python=3.12
conda install conda-forge::cx_oracle
For the second option upgrade/downgrade python in conda
conda install python=3.4
conda install -c conda-forge cx_oracle=5.2
conda create -n your_py34_env python=3.4
conda activate your_py34_env
conda install -c conda-forge cx_oracle=5.2