Snowpark Connect Dependencies (Part 1)
This package, `snowpark-connect-deps-1`, provides Spark JAR dependencies required by `snowflake-snowpark-python[snowpark-connect]`. It does not contain any Python code and is not intended for direct import or use by end-users. The current version is 3.56.4, with releases typically synchronized with the `snowflake-snowpark-python` library.
Common errors
-
ModuleNotFoundError: No module named 'snowpark_connect_deps_1'
cause Attempting to import `snowpark_connect_deps_1` directly in Python code.fixThis package contains no Python code and is not meant to be imported. It serves as a dependency for JAR files. Remove any `import` statements related to this package. -
ERROR: Package 'snowpark-connect-deps-1' requires a different Python: X.Y.Z not in '<3.13,>=3.10'
cause The Python environment's version (indicated by X.Y.Z) does not meet the package's specified requirements.fixActivate a Python environment that satisfies the version constraints (Python >=3.10 and <3.13) and retry the installation. For example, if you're on Python 3.13+, you'll need to downgrade to a compatible version.
Warnings
- gotcha This package does not contain any Python code and is not intended for direct import or usage by end-users. Its sole purpose is to bundle necessary JAR files for `snowflake-snowpark-python[snowpark-connect]`.
- breaking The package has strict Python version requirements. It is compatible with Python >=3.10 and <3.13. Installing with an unsupported Python version will result in a hard failure.
Install
-
pip install snowpark-connect-deps-1 -
pip install 'snowflake-snowpark-python[snowpark-connect]' --upgrade