I’m trying to run a project a friend sent me using Win7x64 with python 2.7 and Django 1.4/1.3
My friend has a similar setup so it should work but it doesn’t. At first I thought it was because I’m using 1.4 instead of 1.3 like he did, but nope same weird error
“Error: no module named follow” zero results in google…
What is causing this and how do I fix it?
Does your project use something like django-follow?
Check the
INSTALLED_APPSinsettings.pyand for hints inurls.pythat indicate this. Ask your friend to do apip freezein their project folder and send you the output or to generate arequirements.txtfrom the output of thepip freezewhich will show all project dependencies.If
django-followis the only missing thing then you can resolve it withpip install django-follow. Else you should also be installing the other dependencies.