EasyInstall
EasyInstall is a package manager for the Python programming language that provides a standard format for distributing Python programs and libraries (based on the Python Eggs wrapper). easy_install is a module bundled with Setuptools, a Third party library meant to enhance the Python standard library's distutils (Distribution utilities). It is analogous to RubyGems for the Ruby programming language.
By default, EasyInstall looks in the Python Package Index (PyPI) for the desired packages and uses the metadata there to download and install the package and its dependencies. It is also hosted itself on the PyPI.
Python Eggs are a way of bundling additional information with a Python project, that allows the project's dependencies to be checked and satisfied at runtime, as well as allowing projects to provide plugins for other projects.
See also
- Python Package Manager - Binary package manager for Python from ActiveState
- RubyGems - similar Ruby package manager
External links
pt:EasyInstall