Python 3.3.1 (default, Apr 17 2013, 22:32:14)
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(1, 5, 1, 'final', 0)
嘿,我正在使用 Eclipse 和 PyDev。我的操作系统是 Ubuntu 13.04,我已经安装了 python 2.7 和 python 3.3。我使用 pip 和 pip3 为两个 python 版本安装了 django。我可以在 Eclipse 之外使用 django 模块,但是当我在 Eclipse 中导入 Django 时,它说
No module named 'Django'
我已经在互联网上寻找了几个小时的答案。我认为我的 PYTHONPATH 包括 django 位置。
这是 Eclipse 中的 PYTHONPATH:
PS。我刚刚发现我可以在 Python 项目中“导入 Django”,但不能在 Eclipse 的 Django 项目中“导入 Django”。oO