Created 04-13-2016 10:02 PM
This is a single node HDP (not sandbox). Installing Zeppelin on the same node using Ambari. Got this error:
File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 92, in checked_call tries=tries, try_sleep=try_sleep) File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 140, in _call_wrapper result = _call(command, **kwargs_copy) File "/usr/lib/python2.6/site-packages/resource_management/core/shell.py", line 291, in _call raise Fail(err_msg) resource_management.core.exceptions.Fail: Execution of '/usr/bin/yum -d 0 -e 0 -y install python-pip' returned 1. Error: Nothing to do
Any idea on how to workaround this?
Created 04-13-2016 10:23 PM
I think it is failing because I have pip already installed on this machine
Created 04-21-2016 02:55 PM
@Arvind Kandaswamy Thanks alot it works now.
Created 06-03-2016 12:54 PM
Hi,
to install the python-pip, you have to install the epel-release repos: Steps can be found below:
http://sharadchhetri.com/2014/09/07/install-epel-repo-centos-7-rhel-7/
After installing the epel-release repo: (found in the link above)
yum install wget wget -r --no-parent -A 'epel-release-*.rpm' http://dl.fedoraproject.org/pub/epel/7/x86_64/e/ rpm -Uvh dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-*.rpm
clean up the yum repo.:
yum clean all
and then try installing:
yum install python-pip
Once the installation is complete, proceed to retry the zeppelin installation.
Hope this helps!