From e656a4e4a6a93fb3093c77a7adbfe9a12a6c99c1 Mon Sep 17 00:00:00 2001 From: mattip Date: Tue, 3 Jul 2018 10:11:42 -0700 Subject: DOC: extend sanity check message --- numpy/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'numpy/__init__.py') diff --git a/numpy/__init__.py b/numpy/__init__.py index 0e269cc84..b912d2222 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -212,7 +212,9 @@ else: except AssertionError: msg = ("The current Numpy installation ({!r}) fails to " "pass simple sanity checks. This can be caused for example " - "by incorrect BLAS library being linked in.") + "by incorrect BLAS library being linked in, or by mixing " + "package managers (pip, conda, apt, ...). Search closed " + "numpy issues for similar problems.") raise RuntimeError(msg.format(__file__)) _sanity_check() -- cgit v1.2.1