How to pip install
From a Git Repository
You can install a Python package from a Git repository by running the pip install git+
command followed by the URL of the repository. For example, to install the Requests module from its GitHub repository:
pip install git+https://github.com/psf/requests.git
This requires Git installed, since the git
command is executed within a subprocess.