Skip to content Skip to sidebar Skip to footer

Unable To Install 'fancyimpute' In Anaconda

I'm trying to install fancyimpute in Anaconda through Anaconda Powershell Prompt but it is resulting in an error. I tried many solutions but none worked for me. I used the followin

Solution 1:

  1. Download and Install Microsoft Build Tools 2015 (If don't have it already)
  2. Download scs and cvxpy wheels for your version of Python. (For me cp36 with amd64 worked, don't know why cp37 didn't work even though my Python version is 3.7.3)
  3. Move .whl files to the subdir for Anaconda Prompt

  4. Run following commands

    conda install ecos

    conda install (scs filename).whl

    conda install (cvxpy filename).whl

    pip install fancyimpute

Note: If .whl runs with an error, download and try other version.

Post a Comment for "Unable To Install 'fancyimpute' In Anaconda"