Introduction to easy_install python package installation management tools

  • 2020-04-02 09:46:01
  • OfStack

Easy_install is more accurately a module that is bundled with setuptools and can be downloaded, built, installed, and managed.

General mode of execution:
Easy_install + URL

However, if some application or script is in Python CheeseShop, it can be executed directly:

Easy_install + package name
This is much faster than opening a website and slowly downloading and installing it.

Use easy_install need (link: http://pypi.python.org/pypi/setuptools) first, and then easy_install directory to the PATH environment variable:
Windows: C: \ Python25 \ Scripts

If you want to remove a package installed via easy_install, such as XXX, you can execute the command:
Easy_install -m XXX

Related articles: