diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-17 11:36:56 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-17 11:36:56 -0500 |
commit | 63fd974b4c73b22efd6d95ae91287261adddb580 (patch) | |
tree | f9df3ff4bbb39435fa3e4877aadee6932679f1bb /docs/hackinghowto.rst | |
parent | dd33ed06fbf4b4347b166a94ce137db64806ebef (diff) | |
download | mediagoblin-63fd974b4c73b22efd6d95ae91287261adddb580.tar.lz mediagoblin-63fd974b4c73b22efd6d95ae91287261adddb580.tar.xz mediagoblin-63fd974b4c73b22efd6d95ae91287261adddb580.zip |
Docs: fixing an issue with being unable to install with distribute installed already
Basically, use "python bootstrap.py --distribute" if you get DistributionNotFound: distribute
Diffstat (limited to 'docs/hackinghowto.rst')
-rw-r--r-- | docs/hackinghowto.rst | 12 |
1 files changed, 12 insertions, 0 deletions
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 ===================== |