在 Mac OS X 上将 Django 1.3 安装到 Python 2.5
使用 Mac OS X v 10.6.7 姜戈1.3 Python 2.5
我正在尝试运行 setup.py 并将 Django 安装到 /Library/Python/2.5 版本的 Python。默认情况下,它安装在 2.6 文件夹中。需要重新引导。
谢谢, 哈利
Using Mac OS X v 10.6.7
Django 1.3
Python 2.5
I am trying to run setup.py and install Django to the /Library/Python/2.5 version of Python. By default it installs in the 2.6 folder. Need to re-direct.
Thanks,
Harry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现您正在尝试将默认安装路径从系统 python 更改为不同的 python 版本。在这种情况下,您是否考虑过 virtualenv ?
您可以通过运行来安装 virtualenv
随着项目及其依赖项数量的增长,它会更加干净且易于管理。
I see that you are trying to change the default install path from system python to a different python version. In that case, have you considered virtualenv?
You can install virtualenv by running
It is much cleaner and much easier to manage as the number of projects and their dependencies grow.
找到它:
sudo python setup.py install --home=/Library/Python/2.5
适用于 Mac OS X
由
Found it:
sudo python setup.py install --home=/Library/Python/2.5
Works for Mac OS X
Courtesy of http://docs.python.org/release/2.2/inst/inst.html