使用 DJango 进行无堆栈安装和配置
我正在尝试运行使用 stackless 的 DJango 命令扩展。
我已经安装了 Stackless Python(用 python 2.5 编译),所以每当我在控制台输入 python2.5 时,它就会启动,表明版本是 Python 2.5.2 Stackless 3.1b3 060516(python-2.52:72942,2009 年 5 月 26 日,23:07:34) [GCC 4.3.3] on linux2
但是在我的 eclipse 中我已经将 django 应用程序配置为使用 python2.6 运行。 特别是在 PyDev 设置中。 很明显,当我提到 import stackless 时,它说没有这样的包。
问题是即使我添加“/usr/local/lib/python2.5/site-packages”目录,它也不会导入 stackless。
这个问题的解决办法是什么?
I am trying to run a DJango Command Extension which uses stackless.
I have installed Stackless Python (compiled with python 2.5) so whenever I type python2.5 at the console it fires up indicating that the version is
Python 2.5.2 Stackless 3.1b3 060516 (python-2.52:72942, May 26 2009, 23:07:34)
[GCC 4.3.3] on linux2
But in my eclipse I have configured my django application to run with python2.6. Specifically in the PyDev settings. So obviously when I mention import stackless it says that there is no such package.
The problem is even if I add the '/usr/local/lib/python2.5/site-packages' directory it does not import stackless.
What is the solution to this issue ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为解决方案是将 Eclipse 指向您的 2.5 stackless 安装,除非您有充分的理由使用 2.6 而不是 2.5?
...或者重新编译 2.6 并将其添加到您的 2.6 安装中。
I think the solution would be to point eclipse at your 2.5 stackless installation unless you have a very good reason to use 2.6 over 2.5?
...or recompile for 2.6 and add it to your 2.6 installation.