How to Install snowflake-connector-python in Python

v4.4.0 Data & Science Python >=3.9 Apache-2.0

Snowflake Connector for Python

Install pip install snowflake-connector-python

What is snowflake-connector-python?

Snowflake Connector for Python

This package includes the Snowflake Connector for Python, which conforms to the Python DB API 2.0 specification:

Snowflake Documentation is available at:

Release Notes - v4.4.0(March 24,2026) - Bump the lower boundary of cryptography to 46.0.5 due to CVE-2026-26007. - Added support for Python 3.14. - Removed pyOpenSSL upper bound dependency constraint to allow installation of pyOpenSSL 26.0.0+, which includes a fix for GHSA-vp96-hxj8-p424. - Fixed Azure IMDS header to use lowercase instead of , which caused 400 errors during Azure Workload Identity Federation authentication. - Fixed default to be 20MB instead of 200MB, as the previous value was set too high and could cause out-of-memory issues. - Fixed a bug where Azure GET commands would incorrectly set the file status to UPLOADED instead of preserving the DOWNLOADED status during metadata retrieval. - Renamed the environment variable for skipping config file permission warnings from to . The old variable is still supported but emits a deprecation warning. - Fixed flag not being respected when reading . - Fixed JSONDecodeError in resultbatch.load() when fetching large result sets

Quick Start

Minimal example to get started with snowflake-connector-python:

import snowflake_connector_python

print(snowflake_connector_python.__version__)

Installation

pip (standard)

pip install snowflake-connector-python

Virtual environment (recommended)

python -m venv venv
source venv/bin/activate   # Windows: venv\Scripts\activate
pip install snowflake-connector-python

pip3

pip3 install snowflake-connector-python

conda

conda install -c conda-forge snowflake-connector-python

Poetry

poetry add snowflake-connector-python

Dependencies

Installing snowflake-connector-python will also install these packages:

Verify the Installation

After installing, confirm the package is available:

python -c "import snowflake_connector_python; print(snowflake_connector_python.__version__)"

If this prints a version number, installation succeeded. If you see a ModuleNotFoundError, see the errors section below.

Installation Errors

Common errors when installing snowflake-connector-python with pip.

ModuleNotFoundError: No module named 'snowflake_connector_python'

Cause: The package is not installed in the current Python environment.

Fix: Run pip install snowflake-connector-python. If using a virtual environment, ensure it is activated first.

ModuleNotFoundError: No module named 'snowflake_connector_python' (installed but still failing)

Cause: pip installed the package into a different Python than the one running your script.

Fix: Use python -m pip install snowflake-connector-python to install into the interpreter you are running.

ImportError: cannot import name 'X' from 'snowflake_connector_python'

Cause: The function or class does not exist in the installed version.

Fix: Check the version with pip show snowflake-connector-python and upgrade with pip install --upgrade snowflake-connector-python.

pip: command not found

Cause: pip is not in PATH or Python was not added to PATH during installation.

Fix: Try python -m pip install snowflake-connector-python. On macOS/Linux try pip3.

PermissionError: [Errno 13] Permission denied

Cause: No write access to the system Python package directory.

Fix: Use a virtual environment, or add --user: pip install --user snowflake-connector-python

SSL: CERTIFICATE_VERIFY_FAILED

Cause: pip cannot verify PyPI's SSL certificate — common behind corporate proxies.

Fix: Try: pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org snowflake-connector-python

MemoryError when loading data

Cause: Dataset is too large to fit in RAM.

Fix: Read in chunks, filter columns on load, or consider Polars/Dask for out-of-core processing.

Recent Releases

VersionReleased
4.4.0 latest 2026-03-25
4.3.0 2026-02-12
4.2.0 2026-01-07
4.1.1 2025-12-02
4.1.0 2025-11-19

Full release history on PyPI →

Manage snowflake-connector-python

Upgrade to latest version

pip install --upgrade snowflake-connector-python

Install a specific version

pip install snowflake-connector-python==4.4.0

Uninstall

pip uninstall snowflake-connector-python

Check what is installed

pip show snowflake-connector-python

Last updated: 2026-04-11 • Data from PyPI