From: Christopher Allan Webber Date: Sun, 17 Jul 2011 16:36:56 +0000 (-0500) Subject: Docs: fixing an issue with being unable to install with distribute installed already X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=63fd974b4c73b22efd6d95ae91287261adddb580;p=mediagoblin.git Docs: fixing an issue with being unable to install with distribute installed already Basically, use "python bootstrap.py --distribute" if you get DistributionNotFound: distribute --- diff --git a/docs/hackinghowto.rst b/docs/hackinghowto.rst index 4cdbf03c..0e3202ce 100644 --- a/docs/hackinghowto.rst +++ b/docs/hackinghowto.rst @@ -197,6 +197,18 @@ If it's installed, check the mongodb log. On my machine, that's Then delete the lock file and relaunch mongodb. +pkg_resources.DistributionNotFound: distribute +---------------------------------------------- + +If you get this while running buildout:: + + pkg_resources.DistributionNotFound: distribute + +Try this commmand instead:: + + python bootstrap.py --distribute && ./bin/buildout + + Wiping your user data =====================