Hi Mark, I am suspicious that you may be running an unsupported version of django. With your virtualenv activated, start python and run the following:
import django print django.get_version() arches 3 requires django 1.6.2 If you've got the correct version here's what you should see: (ENV)machine-name:arches3 user$ python Python 2.7.10 (default, Aug 22 2015, 20:33:39) [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.1)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> print django.get_version() 1.6.2 If you've got a different version, you should be able to get on the right version by running the following (again, with your virtualenv activated): pip install Django==1.6.2 Hope that helps. Good luck! - Rob On Saturday, November 7, 2015 at 5:05:06 PM UTC-8, Mark Gondelman wrote: > > I silly forgot to add: > I'm running Windows 10 machine (so, 64 bit). > -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" 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/d/optout.
