@@ -245,8 +245,8 @@ abbreviation for ``pkg_resources.working_set.require()``:
245
245
interactive interpreter hacking than for production use. If you're creating
246
246
an actual library or application, it's strongly recommended that you create
247
247
a "setup.py" script using ``setuptools``, and declare all your requirements
248
- there. That way, tools like EasyInstall can automatically detect what
249
- requirements your package has, and deal with them accordingly.
248
+ there. That way, tools like pip can automatically detect what requirements
249
+ your package has, and deal with them accordingly.
250
250
251
251
Note that calling ``require('SomePackage')`` will not install
252
252
``SomePackage`` if it isn't already present. If you need to do this, you
@@ -611,9 +611,9 @@ Requirements Parsing
611
611
or activation of both Report-O-Rama and any libraries it needs in order to
612
612
provide PDF support. For example, you could use::
613
613
614
- easy_install.py Report-O-Rama[PDF]
614
+ pip install Report-O-Rama[PDF]
615
615
616
- To install the necessary packages using the EasyInstall program , or call
616
+ To install the necessary packages using pip , or call
617
617
``pkg_resources.require('Report-O-Rama[PDF]')`` to add the necessary
618
618
distributions to sys.path at runtime.
619
619
@@ -1843,9 +1843,9 @@ History
1843
1843
because it isn't necessarily a filesystem path (and hasn't been for some
1844
1844
time now). The ``location`` of ``Distribution`` objects in the filesystem
1845
1845
should always be normalized using ``pkg_resources.normalize_path()``; all
1846
- of the setuptools and EasyInstall code that generates distributions from
1847
- the filesystem (including ``Distribution.from_filename()``) ensure this
1848
- invariant, but if you use a more generic API like ``Distribution()`` or
1846
+ of the setuptools' code that generates distributions from the filesystem
1847
+ (including ``Distribution.from_filename()``) ensure this invariant, but if
1848
+ you use a more generic API like ``Distribution()`` or
1849
1849
``Distribution.from_location()`` you should take care that you don't
1850
1850
create a distribution with an un-normalized filesystem path.
1851
1851
0 commit comments