I'm using Python 3.5.1 and pip 7.1.2:
pip3 --version
pip 7.1.2 from /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages (python 3.5)
In my requirements.txt, I write:
pysam>=0.9.0
Then I use pip3
to install this requirements.txt file like this:
pip3 install -U -r requirements.txt
This pysam
has its own dependencies: cython
, which can be seen at: https://github.com/pysam-developers/pysam/blob/master/requirements.txt
However, using pip3 install -U -r requirements.txt
seems not to install pysam
's dependency recursively, it will throw an expection that ValueError: no cython installed
.
Does anyone have ideas about why requirements.txt
are not installed recursively?