我已經安裝了eclipse和pydev和django。當我打開命令行時,我看到:Pydev沒有在eclipse中集成Django?
C:\Users>python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(1, 4, 2, 'final', 0)
>>>
因此django已正確安裝。
當我在Eclipse中創建一個新的Django項目,我得到:
沒有manage.py ECT一個空項目。
我想在eclipse中創建一個完整的django項目!
我的Python安裝有什麼問題?
我喜歡你的答案!
UPDATE:
現在我的PYTHONPATH看起來是這樣的:
此帖子http://lowcoupling.com/post/47845431628/creating-a-new-django-project-with-eclipse-py-dev提供了一個完整的教程。我希望它能幫到你 – Sindico