1

I am trying to install pymc3 using git follows

$ pip install git+https://github.com/pymc-devs/pymc3

I get the following error

Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/hm/40wvfw514611psdffd2gfxdw0000gn/T/pip-6adU4q-build/

and using pip

$ pip install pymc3

I get the following error

Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/hm/40wvfw514611psdffd2gfxdw0000gn/T/pip-build-GLYokK/pymc3/

I got the following error while updating setuptools

enter image description here

Amarjit Dhillon
  • 2,718
  • 3
  • 23
  • 62

1 Answers1

2

Try to run:

sudo pip install --upgrade setuptools

This is according to:

Python pip install gives "Command "python setup.py egg_info" failed with error code 1"

yorammi
  • 6,272
  • 1
  • 28
  • 34
  • Error: [('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/_markerlib/markers.pyc', '/var/folders/hm/40wvfw514611psdffd2gfxdw0000gn/T/pip-ueE8hC-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/_markerlib/markers.pyc', "[Errno 1] Operation not permitted: – Amarjit Dhillon Nov 19 '17 at 12:51
  • please see updated question for more info, thanks for your previous suggestion – Amarjit Dhillon Nov 19 '17 at 12:55