How might one specify or add a directory to the Python.h search path during a module build/install using setup.py?

断了今生、忘了曾经 提交于 2019-12-06 21:57:45

问题


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.


回答1:


For building compiled packages, you need to tell the configure step of setup.py to look in a different location for include files. I believe this can be done like so:

python setup.py config --with-includepath=/path/to/your/install/of/python/includes/

You may also need to tell setup.py about the location of other files (such as libraries), in which case take a look at:

python setup.py config --help

and check out the --libraries and --library-dirs options. To change the location the resulting package is installed to, use the prefix option after building, e.g.:

python setup.py install --prefix=/path/to/install/to/

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.cfg config file, as discussed here.



来源:https://stackoverflow.com/questions/10858934/how-might-one-specify-or-add-a-directory-to-the-python-h-search-path-during-a-mo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!