python中feather安装

pip install feather-format

注意:不要直接用pip install feather——可以显示安装了但是读的时候会报错,例如:

ImportError: cannot import name 'getuid' from 'os' (D:\anaconda\lib\os.py)

python读feather文件

import feather
df = feather.read_dataframe("./data/train.feather")

 

更多推荐

python读feather格式文件