在 Mac OS X 上安装另一个 Python 版本的 BeautifulSoup
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
.bashrc
中为各种系统 Python(例如python25
等)创建别名会很有帮助。关于更改默认系统 Python 中的
python
指向的内容,我知道如果您别名为新版本,这将起作用,但它可能会导致旧版本出现问题版本,所以要小心(只是我的 $.02)。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).将
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 runpython setup.py install
. Something likePYTHONPATH=/usr/lib/python25 /usr/bin/python25 setup.py install
.