Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89eb8d7

Browse files
committed
Remove mention of now-removed --verbose-foo flags.
1 parent 58c6698 commit 89eb8d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/faq/installing_faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ development environment such as :program:`IDLE` which add additional
2222
complexities. Open up a UNIX shell or a DOS command prompt and run, for
2323
example::
2424

25-
python -c "from pylab import *; plot(); show()" --verbose-helpful
25+
python -c "from pylab import *; set_loglevel('debug'); plot(); show()"
2626

2727
This will give you additional information about which backends Matplotlib is
2828
loading, version information, and more. At this point you might want to make

doc/faq/troubleshooting_faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ mode::
162162
git clean -xdf
163163
git pull
164164
python -mpip install -v . > build.out
165-
python examples/pylab_examples/simple_plot.py --verbose-debug > run.out
165+
python -c "from pylab import *; set_loglevel('debug'); plot(); show()" > run.out
166166

167167
and post :file:`build.out` and :file:`run.out` to the `matplotlib-devel
168168
<https://mail.python.org/mailman/listinfo/matplotlib-devel>`_

0 commit comments

Comments
 (0)