📁 File Manager By @h0rn3t_sp1d3r
📂 Change Directory:
Go
/
/
opt
/
alt
/
python37
/
lib64
/
python3.7
/
ensurepip
/
[ HOME ]
⬅️ [ PARENT DIR ]
📤 Upload
"""Basic pip uninstallation support, helper for the Windows uninstaller""" import argparse import ensurepip import sys def _main(argv=None): parser = argparse.ArgumentParser(prog="python -m ensurepip._uninstall") parser.add_argument( "--version", action="version", version="pip {}".format(ensurepip.version()), help="Show the version of pip this will attempt to uninstall.", ) parser.add_argument( "-v", "--verbose", action="count", default=0, dest="verbosity", help=("Give more output. Option is additive, and can be used up to 3 " "times."), ) args = parser.parse_args(argv) return ensurepip._uninstall_helper(verbosity=args.verbosity) if __name__ == "__main__": sys.exit(_main())
💾 Save
Name
Size (kB)
Modified
Year
Perms
Actions
📁 ..
-
2024-05-24 07:39:34
2024
Set
-
📁 __pycache__
-
2024-05-24 07:39:34
2024
Set
-
📄 __init__.py
7.24
2024-04-17 17:36:03
2024
Set
✏️ Edit
|
🗑️
|
⬇️
|
✏️
📄 __main__.py
0.09
2024-04-17 17:36:03
2024
Set
✏️ Edit
|
🗑️
|
⬇️
|
✏️
📄 _uninstall.py
0.79
2024-04-17 17:36:03
2024
Set
✏️ Edit
|
🗑️
|
⬇️
|
✏️