I’m running Linux, and have downloaded a python module I must install without access to any but my particular /home/user directory (I have no root privileges nor the option to pursue them).
This of course requires the Python source. This I’ve downloaded and have laying around in said user directory.
While asking the admin to copy the proper files into /usr/include/python2.7 is easiest way to go about this, I am hoping for a more general and portable solution to this kind of problem.
Changing only data in the module source (MANIFEST.in, README.txt, setup.py, etc.), how might I add an arbitrary directory to the search path for Python.h and friends?
(Without a solution, “python setup.py build” will continue returning with the “Python.h: No such file or directory” error)
Thank you very much.
For building compiled packages, you need to tell the configure step of
setup.pyto look in a different location for include files. I believe this can be done like so:You may also need to tell
setup.pyabout the location of other files (such as libraries), in which case take a look at:and check out the
--librariesand--library-dirsoptions. To change the location the resulting package is installed to, use the prefix option after building, e.g.:Although the exact combination of options you require might depend on the package you are installing. If you need to do this frequently, I think it can be done by specifying a
setup.cfgconfig file, as discussed here.