Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
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 doAny 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!