From 255c3ec600e56f4c85b015961ba449ef8ecf10e0 Mon Sep 17 00:00:00 2001 From: Max Schrader Date: Sun, 17 Apr 2022 15:32:20 -0500 Subject: [PATCH] Per https://github.com/SheffieldML/GPy/issues/977#issuecomment-1100912510 --- Installation-issues.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Installation-issues.md b/Installation-issues.md index 7a2ef6c..4684baa 100644 --- a/Installation-issues.md +++ b/Installation-issues.md @@ -6,4 +6,9 @@ Typically, you'll install GPy using [`pip`](https://pypi.org/project/pip/) via t ## Common issues ### `ValueError: numpy.ndarray size changed, ...` -The full text of the error is `ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 88 from C header, got 80 from PyObject`. A full traceback is available in [#924](https://github.com/SheffieldML/GPy/issues/924). This issue is caused by an incompatible numpy installation and is solved by running `pip uninstall numpy && pip install numpy`. Then, you should be able to run `pip install GPy` without seeing the same `ValueError`. \ No newline at end of file +The full text of the error is `ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 88 from C header, got 80 from PyObject`. A full traceback is available in [#924](https://github.com/SheffieldML/GPy/issues/924). This issue is caused by an incompatible numpy installation and is solved by running `pip uninstall numpy && pip install numpy`. Then, you should be able to run `pip install GPy` without seeing the same `ValueError`. + +### Hanging Import + +An issue in matplotlib pyplot has been reported by one user to cause a "hanging" `import gpy` on Ubunutu. This [StackOverflow](https://stackoverflow.com/questions/17490444/import-matplotlib-pyplot-hangs) post further explains the `matplotlib.pyplot` behavior. + \ No newline at end of file