Windows : cx_Oracle 5.3 安装与 Python (Anaconda) 冲突

Windows : cx_Oracle 5.3 install conflicts with Python (Anaconda)

我无法在我的环境(64 位 Windows)上安装 cx_Oracle:

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.

我是运行python3.6和pip 9.0.1,安装了Microsoft Visual C++ 14.0... 为什么我的 3.6 和 2.7 之间仍然存在 python 版本冲突?

谢谢

该错误消息通常表示该包还不适用于 Python 3.6。您需要创建一个新的 conda 环境以将软件包安装到

conda create -n py35 python=3.5 cx_oracle