Pip does unnecessary git clone
for github dependencies
#4996
Labels
auto-locked
Outdated issues that have been locked by automation
C: vcs
pip's interaction with version control systems like git, svn and bzr
type: enhancement
Improvements to functionality
Description:
Pip installs github dependencies through
git clone
. Cloning takes a long time for large projects. For example, theclone
part of this command is ~2 minutes:At the same time, one can download source files via a magic link in seconds flat:
https://github.com/django/django/archive/2.0.1.tar.gz
. This works for tags, commits and branches. And in case link stops working one can easily fallback togit clone
.Can we make use of this?
The text was updated successfully, but these errors were encountered: