当另一个 python 包(例如 2.6)是默认值时,将 python 包(例如 lxml)安装到特定的 python 版本(例如 3.1)

发布于 2024-11-03 03:48:57 字数 388 浏览 1 评论 0原文

这些简单的事情让我烦恼:

我注意到我安装的 lxml 无法从我的 python3.1 shell 中找到。

python2.6 shell 没有问题

所以我现在的问题是 - 如何将lxml安装到python3.1? sudo pip install lxml 只是告诉我 lxml 已经安装了。

我知道我可以正确地使用 virtualenv 来做到这一点 - 但老实说,我只是想以最简单的方式学习 python。因此,我认为我不需要像我(错误)理解 virtualenv 提供的那样“包锁定”。任何可以避免混乱并让我专注于编程的东西:-)

我当然可以卸载 python2.6 但我想那时我的 debian 盒子上的一切都会崩溃。

提前致谢

It bugs me theese simple things:

I notice that my installed lxml can't be found from my python3.1 shell.

There is no problem in python2.6 shell

So my question now is - how can I install lxml to python3.1? sudo pip install lxml just tells me that lxml is already installed.

I know I could properbly use virtualenv to do this - but quite honestely I am just trying to learn python in the most simple manner posible. I therefore don't think I need "package lockdown" the way I (mis)understands virtualenv provides. Anything that can keep the confusion at bay and let me focus on the programming :-)

I could of course just uninstall python2.6 but I guess all hell would break loose on my debian box then.

Thanks in advance

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

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

发布评论

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

评论(1

铁轨上的流浪者 2024-11-10 03:48:57

Python 的每个版本都是独立于其他版本的。这适用于所有内容,包括 pip 命令。您需要为每个版本安装一次 pip,然后每个版本都会获得一个 pip 命令。

有关更长的解释,请参阅我的 有关该主题的博客文章

Each version of Python is independent of the others. This goes for everything including pip commands. You need to install pip once per each version, and you then get one pip command per version.

For a longer explanation, see my blog post on the topic.

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