Bitnami Djangostack + Eclipse IDE?
我正在尝试设置 Eclipse(使用 pyDev)以与 Mac OS X 中的 Bitnami Djangostack 一起使用。我已经安装了 Djangostack 并且它工作正常。
问题是我无法让 Eclipse 理解 Djangostack。我已将 Djangostack python 解释器添加到 PyDev 设置中。我还将 apps/django 文件夹添加到库中。 apps/django 文件夹存在于 djangostack 文件夹中。尽管如此,当我尝试创建 PyDev Django 项目时,Eclipse 无法找到 Django(导入 django 不起作用)。在 Eclipse 找到 Djangostack 安装之前我还需要设置哪些其他东西?
I'm trying to setup the Eclipse (with pyDev) to work with Bitnami Djangostack in Mac OS X. I have installed the Djangostack and it works all right.
Problem is that I can't get the Eclipse to understand Djangostack. I've added the Djangostack python interpreter to the PyDev-setup. And also I added the apps/django folder to the Libraries. apps/django folder exist in the djangostack folder. Still, when I'm trying to create PyDev Django project, Eclipse cannot find Django (import django do not work). Any ideas what other things I'd have to setup before Eclipse can find the Djangostack installation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好像找不到 django 包。
确保将其添加到 PYTHONPATH 中。
IE:
如果它安装在:
确保 /foo/bar/ 在你的解释器 PYTHONPATH 中(并确保 /foo/bar/django 不在 PYTHONPATH 中)。
It seems it cannot find the django package.
Make sure you're adding it to the PYTHONPATH.
i.e.:
if it's installed at:
make sure that /foo/bar/ is in your interpreter PYTHONPATH (and make sure that /foo/bar/django is NOT in the PYTHONPATH).