fastmonkeys / stellar

Fast database snapshot and restore tool for development
MIT License
3.86k stars 119 forks source link

stellar init fails #32

Closed brennick closed 9 years ago

brennick commented 10 years ago

When running stellar init after installing through sudo pip install stellar, I get the following error

Traceback (most recent call last):
  File "/usr/local/bin/stellar", line 5, in <module>
    from pkg_resources import load_entry_point
  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: click
koichirose commented 10 years ago

you need to install python setuptools: wget https://bootstrap.pypa.io/ez_setup.py sudo python ez_setup.py

at least this is how I solved it

Teemu commented 9 years ago

Duplicate