Installation

Installing through pypi

Pyimp is now on pypi. To install you can simply run

pip install pyimp

If you want to use fANOVA you will have to install it manually via

pip install git+http://github.com/automl/fanova.git@master

Installing from the repository

To install PyImps requirements from command line, please type the following commands on the command line in PyImps root directory.
cat requirements.txt | xargs -n 1 -L 1 pip install
python setup.py install

After the installation you can call PyImp from anywhere with the keyword pyimp.

Using argcomplete

PyImp can be used with argcomplete. To enable autocompletion of PyImp
arguments, add the following line to your .bashrc or .profile:
eval "$(register-python-argcomplete pyimp)"