From fdaffea5c22e11cfb2a832639f1153aca5c1f5f7 Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Sun, 12 Jul 2015 11:52:24 -0500 Subject: [PATCH] tweak text --- doc/source/introduction.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/source/introduction.rst b/doc/source/introduction.rst index 92ed559a..70161173 100644 --- a/doc/source/introduction.rst +++ b/doc/source/introduction.rst @@ -50,13 +50,15 @@ running:: import pyqtgraph.examples pyqtgraph.examples.run() +Or by running ``python examples/`` from the source root. + This will start a launcher with a list of available examples. Select an item from the list to view its source code and double-click an item to run the example. -(Note If you have installed pyqtgraph with ``python setup.py develop`` -it does the wrong thing and you then need to ``import examples`` and then -``examples.run()``) +Note If you have installed pyqtgraph with ``python setup.py develop`` +then the examples are incorrectly exposed as a top-level module. In this case, +use ``import examples; examples.run()``. How does it compare to...