<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>

7Re  c               @   sV   d  d l  m Z m Z m Z d  d l m Z d  d l m Z Gd d   d e  Z d S(   i    (   u   InstallRequirementu   RequirementSetu   parse_requirements(   u   Command(   u   InstallationErrorc                sJ   |  Ee  Z d  Z d Z d Z d Z d Z   f d d   Z d d   Z   S(	   u   UninstallCommanduB  
    Uninstall packages.

    pip is able to uninstall most installed packages. Known exceptions are:

    - Pure distutils packages installed with ``python setup.py install``, which
      leave behind no metadata to determine what files were installed.
    - Script wrappers installed by ``python setup.py develop``.
    u	   uninstalluU   
      %prog [options] <package> ...
      %prog [options] -r <requirements file> ...u   Uninstall packages.c                s   t  t |   j | |   |  j j d d d d d d d g  d d	 d
 d |  j j d d d d d d d
 d |  j j d |  j  d  S(   Nu   -ru   --requirementu   destu   requirementsu   actionu   appendu   defaultu   metavaru   fileu   helpuj   Uninstall all the packages listed in the given requirements file.  This option can be used multiple times.u   -yu   --yesu   yesu
   store_trueu2   Don't ask for confirmation of uninstall deletions.i    (   u   superu   UninstallCommandu   __init__u   cmd_optsu
   add_optionu   parseru   insert_option_group(   u   selfu   argsu   kw(   u	   __class__(    u/   /tmp/pip-zej_zi-build/pip/commands/uninstall.pyu   __init__   s    				u   UninstallCommand.__init__c          	   C   sΪ   |  j  |  } t d d  d d  d d  d |  } x$ | D] } | j t j |   q7 WxA | j D]6 } x- t | d | d | D] } | j |  q Wqa W| j sΓ t	 d t
 d |  j    n  | j d | j  d  S(	   Nu	   build_diru   src_diru   download_diru   sessionu   optionsuL   You must give at least one requirement to %(name)s (see "pip help %(name)s")u   nameu   auto_confirm(   u   _build_sessionu   RequirementSetu   Noneu   add_requirementu   InstallRequirementu	   from_lineu   requirementsu   parse_requirementsu   has_requirementsu   InstallationErroru   dictu   nameu	   uninstallu   yes(   u   selfu   optionsu   argsu   sessionu   requirement_setu   nameu   filenameu   req(    (    u/   /tmp/pip-zej_zi-build/pip/commands/uninstall.pyu   run(   s"    		u   UninstallCommand.run(	   u   __name__u
   __module__u   __qualname__u   __doc__u   nameu   usageu   summaryu   __init__u   run(   u
   __locals__(    (   u	   __class__u/   /tmp/pip-zej_zi-build/pip/commands/uninstall.pyu   UninstallCommand   s   	u   UninstallCommandN(	   u   pip.requ   InstallRequirementu   RequirementSetu   parse_requirementsu   pip.basecommandu   Commandu   pip.exceptionsu   InstallationErroru   UninstallCommand(    (    (    u/   /tmp/pip-zej_zi-build/pip/commands/uninstall.pyu   <module>   s   