PHP 8.2.30
Preview: quickstart.rst Size: 1021 B
//opt/alt/python33/share/doc/alt-python33-pip/docs/quickstart.rst

Quickstart
==========

First, :doc:`Install pip <installing>`.

Install a package from `PyPI`_:

::

  $ pip install SomePackage
    [...]
    Successfully installed SomePackage

Show what files were installed:

::

  $ pip show --files SomePackage
    Name: SomePackage
    Version: 1.0
    Location: /my/env/lib/pythonx.x/site-packages
    Files:
     ../somepackage/__init__.py
     [...]

List what packages are outdated:

::

  $ pip list --outdated
    SomePackage (Current: 1.0 Latest: 2.0)

Upgrade a package:

::

  $ pip install --upgrade SomePackage
    [...]
    Found existing installation: SomePackage 1.0
    Uninstalling SomePackage:
      Successfully uninstalled SomePackage
    Running setup.py install for SomePackage
    Successfully installed SomePackage

Uninstall a package:

::

  $ pip uninstall SomePackage
    Uninstalling SomePackage:
      /my/env/lib/pythonx.x/site-packages/somepackage
    Proceed (y/n)? y
    Successfully uninstalled SomePackage


.. _PyPI: http://pypi.python.org/pypi/

Directory Contents

Dirs: 1 × Files: 11

Name Size Perms Modified Actions
reference DIR
- drwxr-xr-x 2024-03-03 22:37:39
Edit Download
107 B lrw-r--r-- 2014-05-17 02:19:02
Edit Download
113 B lrw-r--r-- 2014-05-17 02:19:02
Edit Download
4.35 KB lrw-r--r-- 2014-05-17 02:19:02
Edit Download
2.48 KB lrw-r--r-- 2014-05-17 02:18:55
Edit Download
525 B lrw-r--r-- 2014-05-17 02:19:02
Edit Download
1.94 KB lrw-r--r-- 2014-05-17 02:19:02
Edit Download
139 B lrw-r--r-- 2014-05-17 02:18:55
Edit Download
71 B lrw-r--r-- 2014-05-17 02:18:55
Edit Download
1021 B lrw-r--r-- 2014-05-17 02:18:55
Edit Download
123 B lrw-r--r-- 2014-05-17 02:19:02
Edit Download
15.06 KB lrw-r--r-- 2014-05-17 02:19:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).