Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Zeppelin install in Ambari fails with error: Nothing to do

avatar
Rising Star

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?

1 ACCEPTED SOLUTION

avatar
Rising Star

I think it is failing because I have pip already installed on this machine

View solution in original post

11 REPLIES 11

avatar
Rising Star

@Arvind Kandaswamy Thanks alot it works now.

avatar
Contributor

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!