I have a default Python install on the server (version 2.6.6) and installed a 2.7.5 to be able to install Scrapy. However, during installation, it seems that Scrapy took the 2.6.6 binaries and libraries. After installation, of course, Scrapy won't run (Scrapy 0.20.0 requires Python 2.7).
How do I install Scrapy using the 2.7.5 binaries and libraries. I've tried doing a symlink of the python binary to point to python2.7 to no avail. Is there a way to define this on pip? For now assume that we can't remove the 2.6.6 copy on the server.
Thank you.