Initial commit.

This commit is contained in:
2020-01-11 10:33:58 +01:00
commit afcec9769e
542 changed files with 151530 additions and 0 deletions

8
bin/pip Executable file
View File

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