Trying to connect to snowflake database
pip install snowflake-connector-python
getting message
Requirement already satisfied: snowflake-connector-python in c:program filespython312libsite-packages (3.11.0)
import pandas as pd
import snowflake.connector
con = snowflake.connector.connect(
user='',
authenticator='externalbrowser',
account='',
warehouse='',
schema='GOLD',
database=''
)
getting error `ModuleNotFoundError: No module named 'snowflake.connector'; 'snowflake' is not a package`
when I check the packages installed pip --list
I see snowflake-connector-python 3.11.0
I’m using Python 3.12.4
how to resolve this error?