6

今天是我在 Python 的第一天,并且遇到了一些问题。我正在研究的是,“编写一个短程序,从操作系统中提取当前日期和时间,并以以下格式在屏幕上打印:日、月、年、格林威治标准时间的当前时间。证明它有效。 "

我打算使用pytz,所以使用easy_install pytz 了这将它安装在我的站点包中(pytz-2012d-py2.7.egg)

这是我能够导入模块的正确目录吗?

在我的 python shell 中,我使用 from pytz import timezone 我得到, "ImportError: No module named pytz"

有任何想法吗?提前致谢

4

3 回答 3

4

time模块也可以在这里提供帮助.. UTC 是协调世界时(以前称为格林威治标准时间,或 GMT)

In [18]: import time

In [19]: time.gmtime()
Out[19]: time.struct_time(tm_year=2012, tm_mon=9, tm_mday=22, tm_hour=3, tm_min=37, tm_sec=15, tm_wday=5, tm_yday=266, tm_isdst=0)

In [20]: x = time.gmtime()

In [21]: x.tm_year
Out[21]: 2012

In [22]: x.tm_mon
Out[22]: 9

In [23]: x.tm_mday
Out[23]: 22

In [24]: x.tm_hour
Out[24]: 3

您还可以在安装 pytz 时使用以下日志检查日志...

C:\>easy_install pytz
Searching for pytz
Reading http://pypi.python.org/simple/pytz/
Reading http://pytz.sourceforge.net
Reading http://sourceforge.net/project/showfiles.php?group_id=79122
Reading http://www.stuartbishop.net/Software/pytz
Reading http://sourceforge.net/projects/pytz/
Best match: pytz 2012d
Downloading http://pypi.python.org/packages/2.7/p/pytz/pytz-2012d-py2.7.egg#md5=
e6f9219ae6eff242f13c6700413df69e
Processing pytz-2012d-py2.7.egg
Moving pytz-2012d-py2.7.egg to c:\python27\lib\site-packages
Adding pytz 2012d to easy-install.pth file

Installed c:\python27\lib\site-packages\pytz-2012d-py2.7.egg
Processing dependencies for pytz
Finished processing dependencies for pytz

C:\>python
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pytz
>>> from datetime import datetime, timedelta
>>> utc = pytz.utc
>>> utc.zone
'UTC'
于 2012-09-22T03:38:33.973 回答
3

对于它的价值,这里基本问题的答案是 pytz 安装过程实际上并没有提取“.egg”文件(至少,这是我注意到的一个非常相似的问题。)

您可以考虑进入 site-packages 文件夹并自行解压。

于 2013-02-20T00:51:05.460 回答
3

如果您使用的是 python v2 或 python v3,这一点很重要——它有单独的 easy_install 包!在 debian 中有: python-pip python3-pip

然后是easy_install easy_install3

如果您使用错误版本的 easy_install,您将更新错误的库。

于 2014-12-10T09:42:30.380 回答