pydev not recognizing python installation with django

Viewed 11636

I have python installed with django. I know the installation is there because I installed it following the directions and in the command line I can do "import python" and there is no crash.

When I try creating a django project in pydev, I get an error: "Django not found."

What could the problem be?

10 Answers

I had the same problem and had solved it by adding the python home directory to the PATH variable and reconfigure the python interpreter on pydev.

Use auto config in the preferences option and then click apply and then ok.

If everything is done as said above, and still showing "Django not found" while your are trying to create django project, let try to double click 'django-admin' python file that in scripts folder of python. And try to create django project

Related