Issue
I am trying to pip install in jupyter notebook using the code below
%pip install git+https://[email protected]/company-projects/company/_git/coolpkg
and I get the below message as the repo is password protected. I know the password but I am not sure how to include that in the command above. Please let me know thanks.
........
........
Password for 'https://[email protected]':
Solution
I found a way, you can go about this after numerous tries, just need to add token in the url.
%pip install git+https://<token>@dev.azure.com/company-projects/company/_git/coolpkg
Answered By - Ash
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.