pip install -e: Install Forked GitHub Repository using Pip
Sometimes, you might fork and make some changes to the original GitHub repository. If you want others to install your forked repo, use pip install -e git+https://github.com/username/package.git#egg=package.
The code above shows how to install the forked repo of NumPy.
Link to the source code.
Favorite
pip install -e: Install Forked GitHub Repository using Pip Read More »