It sounds like you installed the Django/Satchmo/other packages globally. If you switch out of the virtualenv by running c:\path\to\virtualenv\bin\deactivate, those packages should be available again.
I try to never install packages globally, with tools like pip or hg being the only exceptions. I always create a new virtualenv for each project (and sometimes separate envs for different versions/branches of the same project) - this way, project A can require version 1 of package X and project B can require version 2 of package X, and both projects can coexist peacefully. Brett On 1/5/12 1:01 PM, "Alec Taylor" <[email protected]> wrote: >Good morning, > >On my system (Windows 8 Developer Preview x64 with Python 2.7.2 x64) I >painstakingly installed all the dependencies for Django, Satchmo and a >few other large scale projects. > >(about 10% couldn't be installed with pip, which is why I use the word >'painstakingly') > >Recently though I needed Pinax for something, so following there guide >(http://pinax.readthedocs.org/en/latest/gettingstarted.html) I setup a >virtualenv for it. > >Not only could I not get Pinax running, but when I went back to work >on my Satchmo-based project, and ran "manage.py runserver" I got the >following error: >Traceback (most recent call last): > File "P:\Prototype\Django\store\manage.py", line 18, in <module> > from django.core.management import execute_manager >ImportError: No module named django.core.management > >Typing in `import django` from the interpreter gives me: >Traceback (most recent call last): > File "<stdin>", line 1, in <module> >ImportError: No module named django > >Does this mean I need to install everything required by my project all >over again? - If so, should I take a virtualenv approach (and what >would the advantages be of doing so)? > >Thanks for all suggestions, > >Alec Taylor > >-- >You received this message because you are subscribed to the Google Groups >"Django users" group. >To post to this group, send email to [email protected]. >To unsubscribe from this group, send email to >[email protected]. >For more options, visit this group at >http://groups.google.com/group/django-users?hl=en. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

