I know that one can pip install directly via github so long as the github repo is set up correctly for installation. For example:
pip install git+https://git.example.com/MyProject
I went through the relevant section in the pip documentation but didn't find any information regarding updating. I've also read through two other related threads (this and that) on pip installing via Github, but they also didn't mention about updating. It was tempting to try
pip install -U git+https://git.example.com/MyProject
where -U
stands for update, but I'm not sure will this work. Has anyone tried something like this before?