()
| 76 | |
| 77 | |
| 78 | def check_pip(): |
| 79 | print("------------Pip Info-----------") |
| 80 | try: |
| 81 | import pip |
| 82 | |
| 83 | print("Version :", pip.__version__) |
| 84 | print("Directory :", os.path.dirname(pip.__file__)) |
| 85 | except ImportError: |
| 86 | print("No corresponding pip install for current python.") |
| 87 | |
| 88 | |
| 89 | def _get_current_git_commit(): |