Skip to content Skip to sidebar Skip to footer

Unable To Install Fancyimpute For Use In Jupyter

I have been trying to import fancyimpute on a Jupyter Notebook, as I am interested in using K Nearest Neighbors for data imputation purposes. However, I continue to get the error d

Solution 1:

I got the same error. Fixed by updating my numpy installation:

pip install numpy --upgrade--user

The --user flag installs numpy to my home directory, to avoid using sudo with pip.

Solution 2:

using easy_install fancyimpute

instead of pip install fancyimpute worked for me

Post a Comment for "Unable To Install Fancyimpute For Use In Jupyter"