How to install fancyimpute on Anaconda?

16,557

Solution 1

Have not tried it (on windows), but as this package is on PyPI, usually

pip install fancyimpute

does work.

Solution 2

If you have multiple virtual Python environments on your Anaconda, and you want to install fancyimpute for one of them, let's call it virtual environmen py36, you can do it in the following way:

  1. Open terminal, activate py36 using:

    source activate py36 enter image description here

  2. Under the activated virtual environment, install fancyimpute

    pip install fancyimpute

  3. Go to Anaconda, in environment py36 page, click Update index, and search fancyimpute for the installed, you should see it successfully installed: enter image description here
Share:
16,557

Related videos on Youtube

Make42
Author by

Make42

I am a data scientist in the area of machine learning and artificial intelligence: in industry I am working in applied data science and data analytics in product development and consulting at university I am doing foundational research in theoretical data science and machine learning

Updated on September 14, 2022

Comments

  • Make42
    Make42 over 1 year

    ... since I am not able to find fancyimpute on https://anaconda.org/search

  • Julio Cezar Silva
    Julio Cezar Silva almost 5 years
    This is the actual response to the OP's question. +1 for the activate and final double-check