William D
William D

Reputation: 65

Windows : cx_Oracle 5.3 install conflicts with Python (Anaconda)

I can't get to install cx_Oracle on my environment (64 bits Windows) :

Running setup.py install for cx-Oracle ... error error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools

UnsatisfiableError: The following specifications were found to be in conflict: - cx_oracle -> python 2.7* - python 3.6* Use "conda info " to see the dependencies for each package.

I am running python 3.6 and pip 9.0.1, Microsoft Visual C++ 14.0 is installed... Why do i still have this python version conflict between 3.6 and 2.7?

Thank you

Upvotes: 0

Views: 1107

Answers (1)

darthbith
darthbith

Reputation: 19597

That error message usually means that the package is not available for Python 3.6 yet. You need to create a new conda environment to install the package into

conda create -n py35 python=3.5 cx_oracle

Upvotes: 2

Related Questions