在 Mac OS X 上安装另一个 Python 版本的 BeautifulSoup

发布于 2024-11-25 15:09:39 字数 186 浏览 0 评论 0原文

我的 Mac 上有三个版本的 Python:2.6.1(内置)、2.5.4(Google App Engine 开发)和 2.7.2(通用 Python 编程)。

我使用 python setup.py install 安装了 BeautifulSoup。但是,只有 2.7.2 可以使用它。

我如何在 2.5.4 上安装它?

I have three versions of Python on my Mac: 2.6.1 (built-in), 2.5.4 (Google App Engine development), and 2.7.2 (general Python programming).

I installed BeautifulSoup with python setup.py install. However, only 2.7.2 is able to work with it.

How do I install it for 2.5.4 as well?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沫离伤花 2024-12-02 15:09:39
/path/to/other/python setup.py install

.bashrc 中为各种系统 Python(例如 python25 等)创建别名会很有帮助。

关于更改默认系统 Python 中的 python 指向的内容,我知道如果您别名为新版本,这将起作用,但它可能会导致旧版本出现问题版本,所以要小心(只是我的 $.02)。

/path/to/other/python setup.py install

It can be helpful to make aliases for your various system Pythons (e.g. python25, and so on) in your .bashrc.

In regards to changing what python points to from the default system Python, I know that this will work if you alias to a newer version, but it may cause issues with an older version, so be careful (just my $.02).

乜一 2024-12-02 15:09:39

PYTHONPATH 环境变量设置为指向要安装的安装,并确保在运行 python setup.py install 时使用该版本的 Python 。类似 PYTHONPATH=/usr/lib/python25 /usr/bin/python25 setup.py install 之类的东西。

Set your PYTHONPATH environmental variable to point to the installation you want to install it for, and make sure you're using that version of Python when you run python setup.py install. Something like PYTHONPATH=/usr/lib/python25 /usr/bin/python25 setup.py install.

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