I am trying to install pydoop via following command
pip3.4 install pydoop
The installation is interrupted with following error
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "/tmp/pip-build-jwy57_9u/pydoop/setup.py", line 41
print 'using setuptools version', setuptools.__version__
^
SyntaxError: Missing parentheses in call to 'print'
I think the error has to do with mismatch in python version as there should be parantheses in call to 'print' in python3.
I am able to install other packages using pip3.4 install
The docs clearly state that Pydoop requires Python 2.7 (or 2.6) as a pre-requisite. As far as I know, there is no current support for Python 3 provided by Pydoop. In short, you need to switch to Python 2.7 (or 2.6).