Versions Compared

Key

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

...

  1. Ensure you have the Developer Tools (Xcode) with the Command Line Tools for OS X.

  2. Open the Terminal application.

  3. Install pip (a package management system for software packages written in python): 

    Code Block
     $ sudo easy_install pip
  4. Install the openstack command line tool: 

    Code Block
    $ pip install --user python-openstackclient
  5. Add the following to .bashrc: 

    Code Block
    export PATH=$PATH:/Users/<username>/Library/Python/2.7/bin:$PATH
    export PYTHONPATH=/Users/<username>/Library/Python/2.7/lib/python/site-packages

...