This repository has been archived on 2025-08-29. You can view files and clone it, but cannot push or open issues or pull requests.
oc-develop_oneteam/venv/bin/pip
2024-02-03 21:52:43 -05:00

9 lines
256 B
Python
Executable File

#!/home/mongar/Escritorio/pruebas_oc/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())