Well, it seems like this is a problem of the way.
On my Mac, I used easy_install from /usr/bin .
sudo /usr/bin/easy_install scrapy
The resulting scrapy command scrapy then installed in /usr/local/bin/scrapy .
You may not have this directory in your path, so see if this matches true:
echo $PATH
If it is not there, you can temporarily add it as export PATH=/usr/local/bin:$PATH or change your ~/.bash_profile to add it permanently.
As an alternative, I usually donβt use the installed Python system on Mac - I install homebrew and install a separate version of Python and install scrapy with this version ( scrapy then installed in /usr/local/share/python/scrapy ).
source share