faint-zoo-41552
12/11/2023, 7:55 PMTRAINING_PACKAGES = {
"snowflake-connector-python['pandas']": "3.5.0",
"conda-forge::sentence-transformers": "2.2.2",
"pandas": "2.0.3"
}
I then run a query (that works in other UIs, obv), and get this error:
snowflake.connector.errors.ProgrammingError: 255002: Optional dependency: 'pandas' is not installed, please see the following link for install instructions: <https://docs.snowflake.com/en/user-guide/python-connector-pandas.html#installation>
I originally was trying to do this without the 'pandas' decorator there, just to see if it would work, and it did not. The packages exist in conda-forge at those version numbers. Is there something else I should be doing to get the extra pandas download for snowflake?faint-zoo-41552
12/11/2023, 10:15 PMfaint-zoo-41552
12/11/2023, 10:15 PMTRAINING_PACKAGES = {
"snowflake-connector-python['pandas']": "3.5.0",
"conda-forge::sentence-transformers": "2.2.2",
"pandas": "2.0.3",
"pyarrow": "14.0.1"
}