Opened 13 years ago

Closed 13 years ago

#16471 closed Cleanup/optimization (duplicate)

Recommend using pip rather than easy_install

Reported by: Aymeric Augustin Owned by: nobody
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Aymeric Augustin)

References to easy_install:

trunk % grep -r '\beasy_install\b' . | grep -v .svn
docs/internals/contributing/writing-documentation.txt:Sphinx -- ``easy_install Sphinx`` should do the trick.
docs/intro/whatsnext.txt:      ``easy_install``:
docs/intro/whatsnext.txt:            $ easy_install Sphinx
docs/README:* Install Sphinx (using ``easy_install Sphinx`` or some other method)
docs/ref/contrib/gis/install.txt:    $ sudo python easy_install psycopg2
docs/ref/contrib/gis/install.txt:   To use ``easy_install`` you'll need to install Python's `setuptools`_.
docs/ref/contrib/gis/install.txt:    $ sudo easy_install Django
docs/ref/contrib/gis/install.txt:Afterwards, you may install Django with Python's ``easy_install`` script (the
docs/ref/contrib/gis/install.txt:    $ sudo easy_install Django
docs/ref/contrib/gis/install.txt:* ``python-setuptools``: for ``easy_install``
docs/ref/contrib/gis/install.txt:* ``python-setuptools``: for ``easy_install``

References to pip:

trunk % grep -r '\bpip\b' . | grep -v .svn
docs/howto/deployment/uwsgi.txt:The wiki describes several `installation procedures`_. Using pip, the python
docs/howto/deployment/uwsgi.txt:    pip install uwsgi
docs/howto/deployment/uwsgi.txt:    pip install http://projects.unbit.it/downloads/uwsgi-lts.tar.gz

Change History (3)

comment:1 by Aymeric Augustin, 13 years ago

Description: modified (diff)

comment:2 by Bernhard Essl, 13 years ago

Only a note: I think #9995 is a related ticket.

comment:3 by Aymeric Augustin, 13 years ago

Resolution: duplicate
Status: newclosed

Oops, sorry. Indeed, it's a dupe.

Note: See TracTickets for help on using tickets.
Back to Top