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

Skip to content

Commit 5e275f7

Browse files
committed
DOC: remove pylab from demo in installation docs
1 parent 74f16b6 commit 5e275f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/faq/installing_faq.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ complexities. Open up a UNIX shell or a DOS command prompt and cd into a
2323
directory containing a minimal example in a file. Something like
2424
:file:`simple_plot.py` for example::
2525

26-
from pylab import *
27-
plot([1,2,3])
28-
show()
26+
import matplotlib.pyploy as plt
27+
plt.plot([1,2,3])
28+
plt.show()
2929

3030
and run it with::
3131

0 commit comments

Comments
 (0)