Skip to content

Instantly share code, notes, and snippets.

@kamituel
Created January 20, 2013 14:21
Show Gist options
  • Save kamituel/4579014 to your computer and use it in GitHub Desktop.
Save kamituel/4579014 to your computer and use it in GitHub Desktop.
Buildbot error for wrong python-sqlalchemy version.
from sqlalchemy import exceptions as sa_exceptions
ImportError: cannot import name exceptions”
@apugachev-gd
Copy link

This can be fixed by installing sqlalchemy version 0.6 (for example) after installing buildbot but before running buildbot create:

easy_install buildbot
easy_install -U sqlalchemy==0.6
buildbot create-master master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment