From baf8f762ad314efedb4bad555f7c8c3bb2eded94 Mon Sep 17 00:00:00 2001 From: Eric Kalosa-Kenyon Date: Fri, 28 May 2021 10:00:51 -0700 Subject: [PATCH] corrected typo --- Installation-issues.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Installation-issues.md b/Installation-issues.md index ab22eb3..7a2ef6c 100644 --- a/Installation-issues.md +++ b/Installation-issues.md @@ -1,4 +1,3 @@ -# Installation issues This page describes common GPy installation issues and their solutions. If you solve a new installation issue, please record it here. ## How to install @@ -7,4 +6,4 @@ 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 GPy && pip install GPy`. \ 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`. \ No newline at end of file