I have easy_install and pip installed on my system. I have tried installing a number of different packages such as Twisted and Scrapy and keep getting following error message:
Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_vagrant/cryptography
I am running OS X 10.9 and have tried it on my local machine as well as an Ubuntu virtual machine in vagrant. Regardless of what I do I keep getting some variation of the above error. Oddly enough, I can install some packages like Flask, Django and few others.
I have tried this using virtualenv and to no avail.
Here is one example of an error:
Command /Users/meblumen/Desktop/Virtual_Environments/scraper/bin/python -c "import setuptools, tokenize;__file__='/Users/user1/Desktop/Virtual_Environments/scraper/build/lxml/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/bs/lkq_06gs33s1s_56zywwds2w0000gn/T/pip-Wk9wD5-record/install-record.txt --single-version-externally-managed --compile --install-headers /Users/user1/Desktop/Virtual_Environments/scraper/include/site/python2.7 failed with error code 1 in /Users/user1/Desktop/Virtual_Environments/scraper/build/lxml
Storing debug log for failure in /Users/user1/.pip/pip.log
That was after trying to install lxml by using pip install lxml
. Any insight would be greatly appreciated.