我有一个EC2 Ubuntu 18.04.3 LTS实例,带有python 3.6.9
我尝试用以下命令安装pyarrow:
python3 -m pip install pyarrow
但我得到了一个错误:
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;
__file__='/tmp/pip-build-3q5nmx81/pyarrow/setup.py';
f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('rn', 'n');
f.close();exec(compile(code, __file__, 'exec'))"
install --record /tmp/pip-fgafmfzg-record/install-record.txt
--single-version-externally-managed --compile --user --prefix="
failed with error code 1 in /tmp/pip-build-3q5nmx81/pyarrow/
在尝试安装yarrow后阅读第一条消息时,我看到了以下内容:
Building wheels for collected packages: pyarrow
Running setup.py bdist_wheel for pyarrow ... error
拜托,你知道我该怎么解决这个问题吗?提前谢谢。
如果您在虚拟环境中工作,那么您的pip版本很可能是默认版本(9.0.1
(。尝试使用pip install --upgrade pip
对其进行升级,然后再次运行命令python3 -m pip install pyarrow
。
在Ubuntu 18.04下测试,使用Python 3.6.9和pyarrow==4.0.0