On Mon, Jul 15, 2013 at 12:09 PM, J.P. Fortier <[email protected]> wrote: > I've been following through the instructions in the follow Heroku article > and I'm stuck on installing the django-toolbelt:
There is no django toolbelt, it's the "Heroku Toolbelt," unaffiliated with the Django project. It is a CLI for manipulating Heroku resources. > https://devcenter.heroku.com/articles/django > > It installs the various components OK except for dj-static. It relies on > wsgiref v. 0.1.2. > From what I'm seeing, the latest version of wsgiref is not compatible with > Python 3.3.2 (with Django 1.5.1). (use of 'print' as a statement instead of > as a function, specifically) You probably want to use Python2 if libraries you depend on don't support Python3. You can set a preferred Python runtime in 'runtime.txt', as seen here: https://devcenter.heroku.com/articles/python-runtimes -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
