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 macOS:

    Code Block
    $ sudo xcode-select --install
    $ sudo pip3 install --upgrade pip


  2. Open the Terminal application.

  3. Install the openstack command line tool: 

    Code Block
    $ pip3 install --user python-openstackclient

    Note: We recommend installing this as a user to avoid running into issues with system updates.

  4. Add the following to .bashrczshrc: 

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


...