mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 23:00:18 +00:00
Merge pull request #466 from mandarg/master
Modify setuptools and pip docs for OSX
This commit is contained in:
@@ -65,17 +65,16 @@ This will take a minute or two.
|
|||||||
Setuptools & Pip
|
Setuptools & Pip
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
The most crucial third-party Python software of all is Setuptools, which
|
Homebrew installs Setuptools and ``pip`` for you.
|
||||||
extends the packaging and installation facilities provided by the distutils
|
|
||||||
in the standard library. Once you add Setuptools to your Python system you can
|
|
||||||
download and install any compliant Python software product with a single
|
|
||||||
command. It also enables you to add this network installation capability to
|
|
||||||
your own Python software with very little work. Homebrew already installed
|
|
||||||
Setuptools for you.
|
|
||||||
|
|
||||||
Happily, when you ran ``brew install python``, Homebrew also installed **pip**.
|
Setuptools enables you to download and install any compliant Python
|
||||||
Pip allows for installation and uninstallation of packages, and is actively
|
software over a network (usually the Internet) with a single command
|
||||||
maintained.
|
(``easy_install``). It also enables you to add this network installation
|
||||||
|
capability to your own Python software with very little work.
|
||||||
|
|
||||||
|
``pip`` is a tool for easily installing and managing Python packages,
|
||||||
|
that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways <https://pip.pypa.io/en/1.5.X/other-tools.html#easy-install>`_,
|
||||||
|
and is actively maintained.
|
||||||
|
|
||||||
|
|
||||||
Virtualenv
|
Virtualenv
|
||||||
|
|||||||
Reference in New Issue
Block a user