Install snowflake-connector-python[pandas]

I’m trying to install snowflake-connector-python[pandas].

I’ve tried adding these to my requirements.txt file:

snowflake-connector-python>=2.2.7
snowflake-connector-python[pandas]
snowflake-connector-python[pandas]>=2.2.7

I’m able to get Docker to upgrade from snowflake-connector-python 2.2.6 to 2.2.7 by doing this:

FROM quay.io/astronomer/astro-runtime:4.2.6

RUN pip3 install 'cryptography<3.0.0,>=2.5.0' --no-use-pep517
RUN pip3 install 'snowflake-connector-python[pandas]==2.7.7' --no-use-pep517

However, I still can;'t get the [pandas] extra to install.

How can I get this package extra installed?