I have been trying to solve this problem for 5 hours now with no luck.
I installed python 3.3 earlier today and then learned through google searches that twisted does not currently work/install with this version of python on mac.
However, none of the above should matter because my default version of python is set to 2.7.5 and I know this because when I type Python into the terminal it outputs this:
Python 2.7.5 (default, Aug 25 2013, 00:04:04)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Here's the problem though. Whenever I type "pip install scrapy" or "pip install twisted" into the terminal I get the same output at the end that says 2 warnings and 6 errors have been generated.
And when I look at the terminal output it constantly references version 3.3 of python. Nowhere does it say anything about the correct default version of 2.7.5.
Here's a small sample of what the terminal outputs when I try to install scrapy with pip (Notice how it only references python 3.3):
Requirement already satisfied (use --upgrade to upgrade): scrapy in /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages
Downloading/unpacking Twisted>=10.0.0 (from scrapy)
Downloading Twisted-13.2.0.tar.bz2 (2.7MB): 2.7MB downloaded
Running setup.py (path:/private/var/folders/sj/fs5lzbyd7p37_jdkqw03_q4c0000gn/T/pip_build_patrickjohnson/Twisted/setup.py) egg_info for package Twisted
Requirement already satisfied (use --upgrade to upgrade): w3lib>=1.2 in /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/w3lib-1.5-py3.3.egg (from scrapy)
Requirement already satisfied (use --upgrade to upgrade): queuelib in /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/queuelib-1.1.1-py3.3.egg (from scrapy)
So am I correct in assuming that my pip installs are failing because for some reason they are trying to utilize version 3.3 of python when really they should be using version 2.7.5?
Why is this happening if my default is clearly set to 2.7.5?