I have installed Fabric on Python2.6 using pip, and it has created two directories:
/Library/Python/2.6/site-packages/fabfile
/Library/Python/2.6/site-packages/fabric
When I initially ran the $ fab command it said "command not found". Then I made sure my system path included both folders, and still I got "command not found". Furthermore, I looked in each folder and could not find the fab file or directory.
Note: I can do this from the Python prompt
>>> from fabric.api import ...
What do I need to do to be able to execute the $ fab command? Thank you.