安装日期实用程序
我想安装最新版本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要使用您打算使用的 python 版本来调用 setup.py。如下所示:
无需编辑源文件的第一 shebang 行。
有关详细信息,请参阅安装 Python 模块。
You probably need to invoke setup.py with the version of python you intend to use it with. Something like the following:
There is no need to edit the first shebang line of the source files.
See Installing Python Modules for more info.
您可能需要使用 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 :)