Versions Compared

Key

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

...

  1. Install Python package management (pip) and required packages: 

    Code Block
    $ sudo apt-get install python-pip python-dev


  2. Install Openstack command-line tools using pip: 

    Code Block
    $ sudo pip install python-openstackclient


Installing command-line tools (

...

macOS)

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

  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=/Users/<username>/Library/Python/2.7/bin:$PATH
    export PYTHONPATH=/Users/<username>/Library/Python/2.7/lib/python/site-packages


...