First time here? Check out the FAQ!

coxandrew's profile - activity

2017-01-07 20:53:58 -0500 received badge Notable Question (source)
2016-11-09 04:23:01 -0500 received badge Popular Question (source)
2016-10-15 00:27:59 -0500 received badge Famous Question (source)
2016-09-30 15:11:59 -0500 commented answer ImportError: cannot import name SortedDict

Is it an expectation to have to know Django in order to install and host Askbot? I believe I followed the Askbot Documentation pretty explicitly, so wondering if it might be out-of-date.

2016-09-30 11:54:33 -0500 asked a question ImportError: cannot import name SortedDict

During the "Initial Configuration of Askbot" step from the documentation, I ran into this error when trying to consolidate the static files:

$ python manage.py collectstatic

Traceback (most recent call last):
File "manage.py", line 10, in <module>
  execute_from_command_line(sys.argv)
File "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 350, in execute_from_command_line
  utility.execute()
File "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 324, in execute
  django.setup()
File "/usr/local/lib/python2.7/site-packages/django/__init__.py", line 18, in setup
  apps.populate(settings.INSTALLED_APPS)
File "/usr/local/lib/python2.7/site-packages/django/apps/registry.py", line 85, in populate
  app_config = AppConfig.create(entry)
File "/usr/local/lib/python2.7/site-packages/django/apps/config.py", line 123, in create
  import_module(entry)
File "/usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
  __import__(name)
File "/usr/local/lib/python2.7/site-packages/askbot/deps/livesettings/__init__.py", line 14, in <module>
  from askbot.deps.livesettings.functions import *
File "/usr/local/lib/python2.7/site-packages/askbot/deps/livesettings/functions.py", line 2, in <module>
  from askbot.deps.livesettings import values
File "/usr/local/lib/python2.7/site-packages/askbot/deps/livesettings/values.py", line 12, in <module>
  from django.utils.datastructures import SortedDict
ImportError: cannot import name SortedDict

I've installed askbot using the pip install method. I'm unfamiliar with Python's package management, so not sure where to start.