I keep getting an error when I try to install some basic python libraries like BeautifulSoup. The error looks like this:
What exactly does that mean, and how do I fix it? I already tried these commands:
pip install --upgrade
pip install
pip install unroll
As it was suggested in other posts, but this didn't seem to help either..
pip install unroll, orpip install rpy2==2.2.7, both fail with same error message as in post above. (and indeed BeautifulSoup works with sudo). None ofpip install --upgrade setuptools,pip install ez_setuporeasy_install -U setuptoolsdid help. Any idea? Thaaaanks! – Matifou Nov 07 '17 at 23:14sudo which python pip | xargs -rd '\n' readlink -f,sudo python --versionandsudo pip --version? (sudomay be relevant here becauserootmay have a differentPATH.) Thanks. – David Foerster Nov 09 '17 at 19:07pip --versionreport? – muru Nov 10 '17 at 05:36sudo which python pip | xargs -rd '\n' readlink -fgives /usr/bin/python2.7 and /usr/local/bin/pip.sudo python --versiongives Python 2.7.12 andsudo pip --versionleads to pip 9.0.1 from /home/matifou/.local/lib/python2.7/site-packages (python 2.7). See also output below user.dz post for pip versions. Overall errorinstalling is *Command "python setup.py egg_info" failed with error code 1 * – Matifou Nov 10 '17 at 18:08