在 Mac OS X 上将 Django 1.3 安装到 Python 2.5

发布于 2024-10-26 22:05:30 字数 157 浏览 2 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陈甜 2024-11-02 22:05:30

我发现您正在尝试将默认安装路径从系统 python 更改为不同的 python 版本。在这种情况下,您是否考虑过 virtualenv

您可以通过运行来安装 virtualenv

pip install 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

pip install virtualenv

It is much cleaner and much easier to manage as the number of projects and their dependencies grow.

╰ゝ天使的微笑 2024-11-02 22:05:30

找到它:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文