我正在尝试使用python连接snowflake,我尝试使用以下命令为python安装"Snowflake connector“:pip install snowflake connector-python
https://docs.snowflake.com/en/user-guide/python-connector.html
在安装过程中,我遇到了以下错误:错误:无法为使用PEP 517的pyarrow构建轮子,无法直接安装
发布于 2020-09-30 22:30:21
甚至我在为python安装雪花连接器时也遇到了类似的错误,我使用了下面的命令,问题得到了解决:
python3 -m pip安装--no-use-pep517雪花连接器-python
发布于 2021-02-24 08:04:47
Python 3我没有问题。仅适用于Python 2.7。
如果您使用的是python3,请尝试此操作。这就是纪录片。
sudo python3 -m pip install setuptools-rust
sudo python3 -m pip install wheel
sudo python3 -m pip install -r https://raw.githubusercontent.com/snowflakedb/snowflake-connector-python/v2.3.9/tested_requirements/requirements_36.reqs
sudo python3 -m pip install snowflake-connector-python==2.3.9https://stackoverflow.com/questions/64139723
复制相似问题