What are some possible remedies for occasional connectivity issues when using pip or dbutils.library.installPyPI?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2021 08:20 AM
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2021 08:23 AM
- Hosting your own internal PyPI mirror. That will allow you to manage and approve packages vs directly downloading from public PyPI and then also would remove dependency on an external service
- Upload all wheel files to DBFS, maybe through a CI/CD process. pip install from the DBFS path.
This is not an exhaustive list, but some possible approaches.

