How do you pip install from a private repo via Google Cloud Source repos? Seems like something that should be possible.
!pip install gcloud source repos clone [REPOSITORY_NAME] --project=[PROJECT_NAME]
I haven't used Cloud Source Repositories (so I haven't tested this), but it seems like you would need to do one of two things:
!pip install https://source.developers.google.com/p/[PROJECT_ID]/r/[REPO_NAME]
gcloud source repos clone [REPOSITORY_NAME] --project=[PROJECT_NAME]
!pip install -e [PATH_TO_CLONED_REPO]