2

运行时出现错误import feather

---> 28 from pyarrow.lib import cpu_count, set_cpu_count
     29 from pyarrow.lib import (null, bool_,
     30                          int8, int16, int32, int64,
ImportError: cannot import name 'cpu_count'

有人知道怎么修这个东西吗?我已经pyarrow安装并且是最新的,据我所知cpu_count,我不能安装一个包。

4

1 回答 1

0

cpu_count()这是因为 Python 2.X在 OS 模块中没有功能。但是 python3 在其操作系统模块中有 cpu_count() 。我建议您使用 python3 或修补文件from multiprocessing import cpu_count

于 2018-06-25T10:24:42.363 回答