-
Notifications
You must be signed in to change notification settings - Fork 526
Description
Hey there, appreciate if you could assist on this issue.
Background:
- We have an attempt to connect Snowflake with our IDE so that we can manipulate data stored in Snowflake using Python.
What We Have Done:
-
Initially we installed the latest Python version (i.e., Python 3.14.0).
-
We read that there is no wheels for version 3.14.0 yet, thus we downgraded to Python 3.12.8 because it is the most stable version and a cp312 file is available in the library.
-
The Python version downgraded is successful. We confirmed by running
python --versioncommand and it showedPython 3.12.8. -
We downloaded the entire snowflake-connector-python ZIP folder locally.
-
We ran the following commands in our virtual environment folder:
cd snowflake-connector-python
python -m pip install -U pip setuptools wheel build
python -m build --wheel .
Now We Puzzle
We believe that we have done all the steps correctly, and yet we can't figure out why command prompt returns the following error:
Appreciate if you could shine us with some insights and what details that we might have missed.