Scrapy: no se puede crear un proyecto

Tuve problemas para instalar scrapy respecto alxml pero luego encontré algo de información sobre stackoverflow. Basándome en esa información hice unasudo easy_install lxml con algún error creo que consiguió scrapy instalar:

La razón por la que llegué a ese juicio es que rechazo lo que podría hacer a continuación:

Python 2.7.5 (default, Jul 28 2013, 07:27:04) 
[GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from scrapy import *
>>> 

Pero cuando trato de hacer eltutorial desechable Me sale el siguiente error:

$ scrapy startproject tutorial
Traceback (most recent call last):
  File "/usr/local/bin/scrapy", line 4, in <module>
    import pkg_resources
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 2603, in <module>
    working_set.require(__requires__)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 666, in require
    needed = self.resolve(parse_requirements(requirements))
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 565, in resolve
    raise DistributionNotFound(req)  # XXX put more info here
pkg_resources.DistributionNotFound: lxml

Respuestas a la pregunta(1)

Su respuesta a la pregunta