Versions Compared

Key

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

...

  1. Make sure you have Python version 2.7 or higher 3 (download python)
    • Windows: Set the PYTHONPATH environment variable 
      On your desktop, right-click My Computer, and then click Properties. In the System Properties dialog box, click Advanced, and then click Environment Variables. Under User variables for <username> (the top half of this window), click New. In the New User Variable dialog box, type "PYTHONPATH" in the Variable name box. In the Variable Value box, type "%PYTHONPATH%;C:\YourPythonFolder" (replace "C:\YourPythonFolder" with the location where you installed Python), and then click OK.
  2. Install python-swiftclient using pip:

    Code Block
    pip install python-openstackclient

    You may have the run the command with sudo if you receive a permission denied error:

    Code Block
    sudo pip install python-openstackclient


...