Lines Matching full:pip
92 Managing Packages with pip
96 :program:`pip`. By default ``pip`` will install packages from the Python
98 Package Index by going to it in your web browser, or you can use ``pip``'s
103 (tutorial-env) $ pip search astronomy
111 ``pip`` has a number of subcommands: "search", "install", "uninstall",
113 complete documentation for ``pip``.)
119 (tutorial-env) $ python -m pip install novas
131 (tutorial-env) $ python -m pip install requests==2.6.0
137 If you re-run this command, ``pip`` will notice that the requested
139 different version number to get that version, or you can run ``pip
144 (tutorial-env) $ python -m pip install --upgrade requests
152 ``pip uninstall`` followed by one or more package names will remove the
155 ``pip show`` will display information about a particular package:
159 (tutorial-env) $ pip show requests
172 ``pip list`` will display all of the packages installed in the virtual
177 (tutorial-env) $ pip list
180 pip (7.0.3)
184 ``pip freeze`` will produce a similar list of the installed packages,
185 but the output uses the format that ``pip install`` expects.
190 (tutorial-env) $ pip freeze > requirements.txt
202 (tutorial-env) $ python -m pip install -r requirements.txt
213 ``pip`` has many more options. Consult the :ref:`installing-index`
214 guide for complete documentation for ``pip``. When you've written