Home:ALL Converter>Installation failed while installing pydoop using conda

Installation failed while installing pydoop using conda

Ask Time:2017-07-21T17:56:11         Author:Shubham Chauhan

Json Formatter

I have anaconda installed on ubuntu, i am using spyder for python development I am trying command

conda install -c ijstokes pydoop 

it is giving:

Fetching package metadata .............
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
  - pydoop -> python 3.5* -> openssl 1.0.1*
  - pydoop -> python 3.5* -> xz 5.0.5
  - python 3.6*

Use "conda info " to see the dependencies for each package. Dont know what to do next please help.

Author:Shubham Chauhan,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/45234641/installation-failed-while-installing-pydoop-using-conda
darthbith :

The error states that there is a version conflict between pydoop which has a dependency on python 3.5* and python 3.6*. The easiest way to fix this is to make an environment with Python 3.5. \n\nconda create -n py35 -c ijstokes python=3.5 pydoop\n",
2017-07-21T14:28:47
yy