I'm trying to install a python package here, called pips. https://github.com/jbloom/pips-1.0#using-pips
I follow all the directions, using:
python setup.py build
python setup.py install
as root. I then try to load pips in python (ipython), using:
import pips
However, it doesn't recognize this program. My python installation is 2.7, which should be compatible with the package. Am I doing something wrong?
Edit: The output I get to the setup.py install is:
[root@tawfik pips-1.0-master]# python setup.py install
running install
running build
running build_py
running build_ext
running build_scripts
running install_lib
running install_scripts
changing mode of /usr/bin/pips_consensus.py to 775
changing mode of /usr/bin/pips_run_cupsat.py to 775
changing mode of /usr/bin/pips_build_tree_and_alignment.py to 775
changing mode of /usr/bin/pips_analysis.py to 775
changing mode of /usr/bin/pips_run_foldx.py to 775
changing mode of /usr/bin/pips_correlate_selected_mutations.py to 775
changing mode of /usr/bin/pips_analyze_selected_mutations.py to 775
running install_egg_info
Removing /usr/lib64/python2.6/site-packages/pips-1.0-py2.6.egg-info
Writing /usr/lib64/python2.6/site-packages/pips-1.0-py2.6.egg-info
pipinstalls to a different interpreter. This is a common issue. What is the output ofwhich pipandwhich python(assuming you are on Unix)?pipspackage, not using thepython-piptool. @Devinity: can you give the output of your run ofpython setup.py install?ipython setup.py buildthenipython setup.py installshould work.