davideaves.com

Live in a world of your own, but always welcome visitors.

View on GitHub
18 December 2010

Upgrading and managing installed Python packages

by deaves

Make sure python-setuptools is installed on system.

Install Yolk to query installed packages:

easy_install yolk

Check PyPI for updates on packages:

yolk -U

easy_install can be used to upgrade any installed package:

yolk -a | cut -d ‘ ‘ -f 1 | xargs easy_install -U
tags: linux - python