Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到此错误消息:Missing optional dependency 'pyarrow'. Use pip or conda to install pyarrow.当我运行一个简单的命令来加载羽毛数据时,即:pd.read_feather("data.feather").
Missing optional dependency 'pyarrow'. Use pip or conda to install pyarrow.
pd.read_feather("data.feather")
当然,我可以从 conda-forge 安装 pyarrow,但这会强制从 Pandas 25 降级到 Pandas 24。这对我来说没有意义。
我想保留 Pandas 25并加载羽毛文件。如何进行?
Conda 的 pyarrow 版本不能正常工作。卸载它,然后通过 pip 再次安装(当前版本是 0.15.1 vs 0.13.something of Conda) - 它适用于 Pandas 25.x