Lines Matching full:pip
92 Managing Packages with pip
96 :program:`pip`. By default ``pip`` will install packages from the Python
100 ``pip`` has a number of subcommands: "install", "uninstall",
102 complete documentation for ``pip``.)
108 (tutorial-env) $ python -m pip install novas
120 (tutorial-env) $ python -m pip install requests==2.6.0
126 If you re-run this command, ``pip`` will notice that the requested
128 different version number to get that version, or you can run ``pip
133 (tutorial-env) $ python -m pip install --upgrade requests
141 ``pip uninstall`` followed by one or more package names will remove the
144 ``pip show`` will display information about a particular package:
148 (tutorial-env) $ pip show requests
161 ``pip list`` will display all of the packages installed in the virtual
166 (tutorial-env) $ pip list
169 pip (7.0.3)
173 ``pip freeze`` will produce a similar list of the installed packages,
174 but the output uses the format that ``pip install`` expects.
179 (tutorial-env) $ pip freeze > requirements.txt
191 (tutorial-env) $ python -m pip install -r requirements.txt
202 ``pip`` has many more options. Consult the :ref:`installing-index`
203 guide for complete documentation for ``pip``. When you've written