【发布时间】:2012-11-16 01:11:19
【问题描述】:
我已经安装了 eclipse 和 pydev 和 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 等的空项目。
我想在 Eclipse 中创建一个完整配置的 django 项目!
我的 Python 安装有什么问题?
感谢你的回答!!!
更新:
现在我的 pythonpath 看起来像这样:
【问题讨论】:
-
这篇文章lowcoupling.com/post/47845431628/…提供了一个完整的教程。希望对你有帮助
标签: python django windows eclipse