1

I need help for the installtion of pip.

Errors were encountered while processing:
 python-colorama
 python-distlib
 python-ndg-httpsclient
 python-urllib3
 python-requests
 python-setuptools
 python-pip
 python-wheel
E: Sub-process /usr/bin/dpkg returned an error code (1)

In addition:

$ pip -V
bash: /usr/bin/pip: /usr/bin/python: bad interpreter: Permission denied
Cbhihe
  • 2,761
  • 3
  • 24
  • 47
WarLock
  • 11

1 Answers1

0

pip is installed when you have either python2.x or anaconda installed. You can install anaconda from this link

Once you have got the installer run it like this

bash ~/Downloads/Anaconda3-2.4.0-Linux-x86_64.sh

After installation pip is also installed

which pip
/opt/anaconda2/bin/pip
Ashu
  • 3,966
  • Yes, but I would favor @DavidFoerster's install path. It's lighter on the OS in case Anaconda is not specifically needed . The result of which pip in David's case would be /usr/bin/pip. – Cbhihe Feb 29 '16 at 09:00