安装日期实用程序

发布于 2024-11-28 08:50:16 字数 265 浏览 2 评论 0原文

我想安装最新版本的 dateutil 以使用 Python 3.1。我的系统默认的 Python 版本是 2.6.1,因此我通过将以下 shebang 添加到每个文件的顶部来运行用 Python 3.x 语法编写的脚本:

#!/usr/local/bin/python3.1
# -*- coding utf-8 -*-

谁能告诉我需要做什么才能让 dateutil 2.0 使用此文件Python 3.1 版本。

谢谢, 保罗.

I'd like to install the most recent version of dateutil, to work with Python 3.1. My systems default version of Python is 2.6.1, so I run scripts written with Python 3.x syntax by adding the following shebang to the top of each file:

#!/usr/local/bin/python3.1
# -*- coding utf-8 -*-

Can anyone tell me what I need to do to get dateutil 2.0 working with this 3.1 version of Python.

Thanks,
Paul.

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

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

发布评论

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

评论(2

红焚 2024-12-05 08:50:16

您可能需要使用您打算使用的 python 版本来调用 setup.py。如下所示:

$ /usr/local/bin/python3.1 setup.py build
$ sudo /usr/local/bin/python3.1 setup.py install

无需编辑源文件的第一 shebang 行。

有关详细信息,请参阅安装 Python 模块

You probably need to invoke setup.py with the version of python you intend to use it with. Something like the following:

$ /usr/local/bin/python3.1 setup.py build
$ sudo /usr/local/bin/python3.1 setup.py install

There is no need to edit the first shebang line of the source files.

See Installing Python Modules for more info.

只是我以为 2024-12-05 08:50:16

您可能需要使用 virtualenv 在多个 python 环境之间切换。在您所描述的情况下,您可以使用 Python 3.1 设置一个新的 virtualenv,然后只需在 virtualenv 内使用 pip 来安装任何内容,包括 dateutil 2.0 :)

You may want to use virtualenv to switch among multiple python environments. In your described situation, you can set up a new virtualenv with Python 3.1, and simply use pip inside the virtualenv to install anything, including dateutil 2.0 :)

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