Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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
New Member

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!