Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How to install Python modules

To install easy_install, see install the python2.7 version of it from here http://pypi.python.org/pypi/setuptoolssetuptools#files

  1. Make sure you are running the right version of easy_install http://superuser.com/questions/256717/easy-install-the-wrong-version-of-python-modules-mac-os
  2. From the shell:
    Code Block
    ~/platform/trunk>easy_install progressbar
    Searching for progressbar
    Reading http://pypi.python.org/simple/progressbar/
    Reading http://code.google.com/p/python-progressbar/
    Reading http://code.google.com/p/python-progressbar
    Best match: progressbar 2.3
    Downloading http://python-progressbar.googlecode.com/files/progressbar-2.3.tar.gz
    Processing progressbar-2.3.tar.gz
    Running progressbar-2.3/setup.py -q bdist_egg --dist-dir /var/folders/h0/h0pR5063FtCMCzzo1bt2WU+++TI/-Tmp-/easy_install-a29dGI/progressbar-2.3/egg-dist-tmp-3Dwzuw
    zip_safe flag not set; analyzing archive contents...
    Adding progressbar 2.3 to easy-install.pth file
    
    Installed /Library/Python/2.7/site-packages/progressbar-2.3-py2.7.egg
    Processing dependencies for progressbar
    Finished processing dependencies for progressbar
    

...