Skip to content

Commit 854b7db

Browse files
committed
Small fix to lib mgmnt doc
1 parent 0234d47 commit 854b7db

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

articles/synapse-analytics/spark/apache-spark-azure-portal-add-libraries.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ Upload the environment configuration file using the file selector in the **Packa
4848

4949
![Add Python libraries](./media/apache-spark-azure-portal-add-libraries/add-python-libraries.png "Add Python libraries")
5050

51+
### Verifying installed libraries
52+
53+
To verify if the correct versions of the correct libraries are installed run the following code
54+
55+
```python
56+
import pip #needed to use the pip functions
57+
for i in pip.get_installed_distributions(local_only=True):
58+
print(i)
59+
```
60+
5161
## Next steps
5262

5363
- [Azure Synapse Analytics](https://docs.microsoft.com/azure/synapse-analytics)

0 commit comments

Comments
 (0)