Updating all python packages that are installed via pip is often referred to as running something like the commands
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -UHowever, some problems can occur on Mac OS X, as certain default packages are included into the base python installation.
Packages tha
...