/docs/source/start/quick.rst

https://bitbucket.org/prologic/circuits/ · ReStructuredText · 32 lines · 17 code · 15 blank · 0 comment · 0 complexity · 3d136762e5a12e1acc12af7923659447 MD5 · raw file

  1. .. _pip: http://pypi.python.org/pypi/pip
  2. Quick Start Guide
  3. =================
  4. The easiest way to download and install circuits is to use the
  5. `pip`_ command:
  6. .. code-block:: sh
  7. $ pip install circuits
  8. Now that you have successfully downloaded and installed circuits, let's
  9. test that circuits is properly installed and working.
  10. First, let's check the installed version:
  11. .. code-block:: python
  12. >>> import circuits
  13. >>> print circuits.__version__
  14. This should output:
  15. .. program-output: python -c "import circuits; print circuits.__version__"
  16. Try some of the examples in the examples/ directory shipped with the distribution.
  17. Have fun :)