OK - Trying to add Satchmo to another django project, so I follow the
instructions on the wiki. After running load_data, it deletes all my
tables, and recreates them, no problem. First error I get is after I
enter yes to 'load sample store data?' The traceback I get ends with
this error:
raise SettingNotSet('%s config group does not exist' % group)
Googling found a couple solutions (in this Google Group) that
suggested importing all the Satchmo apps, so I listed them all in my
project.settings file. Then I get an import error:
ImportError: No module named Crypto.Cipher
So I go grab pycrypto from
http://www.amk.ca/python/code/crypto and
sit it into my python path, renaming the directory from
'pycrypto-2.0.1' to 'Crypto'. Then I get this lovely message:
from Crypto.Ciper import Blowfish
ImportError: cannot import name Blowfish
Any Idea what I'm doing wrong? I feel like I'm running down one blind
alley after another, and I'm not at all sure that I'll end up with
things setup the way they're supposed to be.