install.rst 897 B

123456789101112131415161718192021222324252627282930313233
  1. Installation
  2. ============
  3. **Prerequisites**: CloudBridge runs on Python 2.7 and higher. Python 3 is recommended.
  4. Latest release
  5. --------------
  6. The latest release of cloudbridge can be installed from PyPI::
  7. pip install cloudbridge
  8. Manual installation
  9. -------------------
  10. The development version of the library can be installed from the
  11. `Github repo <https://github.com/gvlproject/cloudbridge>`_::
  12. $ git clone https://github.com/gvlproject/cloudbridge.git
  13. $ cd cloudbridge
  14. $ python setup.py install
  15. Developer installation
  16. ----------------------
  17. To install additional libraries required by CloudBridge contributors, such as
  18. `tox <https://tox.readthedocs.org/en/latest/>`_, run the following command::
  19. pip install cloudbridge[dev]
  20. ----------
  21. To check what version of the library you have installed, do the following::
  22. import cloudbridge
  23. cloudbridge.get_version()