Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
5,182 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In Databricks it is possible to install Python (but not Scala) libraries from within notebook, into notebook's local scope, e.g.:
!pip install 'library-name'
or
dbutils.library.installPyPI("library-name")
Is something similar possible with Synapse?
Not currently no. Python libraries can be added via a requirements.txt (output from a pip freeze) at the Spark pool level. We will add more options in the future.
-Euan