The python library I'm using needs some non-python dependencies. Python recognizes them if the default path is used (/usr/bin/). But my use case requires me to build the dependencies in a specific directory.
./configure prefix= <directory>
make && make install
But how do I tell it to read from a custom directory?