(1) I need to install one python package (HTSeq), but I do not have root privileges.
The package requires python 2.4 or latest version. Our cluster has python 2.3.
So I installed python 2.7 in my local directory using
./configure --prefix=/home/amit/tools/localpython make make install
(2) The package also requires numpy: so I also installed it in my local directory using:
/home/amit/tools/localpython/bin/python2.7 setup.py install --home=/home/amit/tools/localnumpy
and done
>>> sys.path.append("/home/amit/tools/localnumpy/lib/")
(3) I downloaded the HTSeq tar file (which I want to download) and ran
/home/amit/tools/localpython/bin/python2.7 setup.py install --home=/home/amit/tools/localhtseq
he throws the following error:
Could not import 'setuptools', falling back to 'distutils'. Setup script for HTSeq: Failed to import 'numpy'. Please install numpy and then try again to install HTSeq.
Please give me some hint on how to overcome this.
Thanks in advance
source share