This commit is contained in:
Egor Matveev
2021-09-05 15:35:24 +03:00
parent 33874c0a11
commit e6a9a6a7a8
22 changed files with 519 additions and 1 deletions

8
venv/bin/pip Executable file
View File

@@ -0,0 +1,8 @@
#!/Users/egormatveev/Sprint/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())