我正在Spyder / conda中运行脚本...被迫更新一件事,导致另一件事。最后,我被困在尝试修复此错误上,这一点非常重要,因为如果不连接雪花,就无法获得数据或用分析结果填充表格。
要验证我的连接,我现在只是尝试运行其样板连接脚本:
#!/usr/bin/env python
import snowflake.connector
# Gets the version
ctx = snowflake.connector.connect(
user='email',
password='pw',
account='acct'
)
cs = ctx.cursor()
try:
cs.execute("SELECT current_version()")
one_row = cs.fetchone()
print(one_row[0])
finally:
cs.close()
ctx.close()
我一直收到“ OperationalError:250003:无法执行请求:'SSLSocket'对象没有属性'connection'”错误,并且不确定重新安装sqlalchemy,pyarrow,pandas,snowle-connector-python后该怎么做
欢迎任何帮助/建议!我今天没主意了。