From e43ba1eec02208d0ca8083cfe170e1ba4ca967fc Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 8 Sep 2017 14:18:53 -0700 Subject: [PATCH] Suggest using pip to install numpy --- wx/lib/plot/examples/demo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wx/lib/plot/examples/demo.py b/wx/lib/plot/examples/demo.py index a852ec2b..1279642f 100644 --- a/wx/lib/plot/examples/demo.py +++ b/wx/lib/plot/examples/demo.py @@ -28,7 +28,8 @@ except ImportError: imported. It probably is not installed (it's not part of the standard Python distribution). See the Numeric Python site (http://numpy.scipy.org) for information on downloading source or - binaries.""" + binaries, or just try `pip install numpy` and it will probably + work.""" raise ImportError("NumPy not found.\n" + msg)