2

我在下面的示例代码中收到以下错误。我不确定导致错误的原因或原因,因为此代码过去运行良好。我正在使用 Python 2.7

AttributeError: 'module' object has no attribute 'allocate_lock'

这是一个包含问题的最小示例。

import pandas as pd
import pytz

from datetime import datetime, timedelta
from dateutil import rrule

start = pd.Timestamp('1900-01-01', tz='UTC')
end_base = pd.Timestamp('today', tz='UTC')
end = end_base + timedelta(days=365)

def canonicalize_datetime(dt):
    return datetime(dt.year, dt.month, dt.day, tzinfo=pytz.utc)

def get_rules(start, end):
    rules = []

    start = canonicalize_datetime(start)
    end = canonicalize_datetime(end)

    weekends = rrule.rrule(
        rrule.YEARLY,
        byweekday=(rrule.SA, rrule.SU),
        cache=True,
        dtstart=start,
        until=end
    )
    rules.append(weekends)

    return rules

rules = get_rules(start, end)

完整的追溯

Traceback (most recent call last):
  File "/Users/mac/Documents/test.py", line 48, in <module>
    rules = get_rules(start, end)
  File "/Users/mac/Documents/test.py", line 42, in get_rules
    until=end
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/dateutil/rrule.py", line 239, in __init__
    super(rrule, self).__init__(cache)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/dateutil/rrule.py", line 90, in __init__
    self._cache_lock = _thread.allocate_lock()
AttributeError: 'module' object has no attribute 'allocate_lock'

从 dateutil 源代码和用户 @PatrickCollins 可以产生问题

import _thread

_thread.allocate_lock()
4

2 回答 2

1

经过进一步调查,问题似乎与pip安装不正确的版本有关。安装 datetuil-1.5 解决了该问题。

python-dateutil-2.0.tar.gz (Python >= 3.0)

python-dateutil-1.5.tar.gz (Python < 3.0)

然而,这可能会导致更多关于为什么 dateutil 2.2 版适用于其他使用 python 2.7 的问题

于 2014-08-31T18:48:33.447 回答
1

使用 Anaconda Python 运行 Caffe 时出现此错误;评论中的陈述为我解决了它

pip install --upgrade python-dateutil
Collecting python-dateutil
  Downloading python_dateutil-2.6.0-py2.py3-none-any.whl (194kB)
    100% |████████████████████████████████| 194kB 484kB/s 
Requirement already up-to-date: six>=1.5 in /home/alex/anaconda3/lib/python3.6/site-packages (from python-dateutil)
Installing collected packages: python-dateutil
  Found existing installation: python-dateutil 1.5
    Uninstalling python-dateutil-1.5:
      Successfully uninstalled python-dateutil-1.5
Successfully installed python-dateutil-2.6.0
于 2017-02-28T12:46:44.863 回答