So, I'm working away at all of these lovely ideas, and I've run into what I think is a real problem in the quickstart.
Using Python3.4, Ubuntu 14.10, in an activated venv. I make a quickstart using these commands: gearbox quickstart --ming --auth qst cd qst python setup.py develop gearbox setup-app And I then get this error: 22:37:48,541 ERROR [gearbox] No module named 'session' When I dig in, I find qst/model/session.py exists and can be imported. However, I think that qst/model/__init__.py has a problem with this line: from session import mainsession, DBSession And when I change the line to this, it gets past this point: from .session import mainsession, DBSession I am now getting an error that says this, though, and don't have time to debug (about to get off the train): 22:41:55,463 ERROR [gearbox] 'str' object has no attribute 'decode' Any feedback to help me through the Ming/Mongo setup in this environment would be greatly appreciated. -- Michael J. Pedersen My Profile: http://www.icelus.org/ Google+ https://google.com/+MichaelPedersen -- You received this message because you are subscribed to the Google Groups "TurboGears Trunk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/turbogears-trunk. For more options, visit https://groups.google.com/d/optout.
