We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 369cd4d commit 430cb31Copy full SHA for 430cb31
test_build.py
@@ -6,6 +6,12 @@
6
print("Numpy imported ok")
7
print("Your lucky number is: " + str(np.random.randint(100)))
8
9
+# Numpy must be linked to the MKL. (Occasionally, a third-party package will muck up the installation
10
+# and numpy will be reinstalled with an OpenBLAS backing.)
11
+from numpy.distutils.system_info import get_info
12
+# This will throw an exception if the MKL is not linked correctly.
13
+get_info("blas_mkl")
14
+
15
import pandas as pd
16
print("Pandas imported ok")
17
0 commit comments