Python:哪个包包含安装元数据?
例如,我如何知道可执行文件已安装在“/usr/bin/python”中,而库文件已安装在“/usr/lib/python2.6”中?
e.g., how can I find out that the executable has been installed in "/usr/bin/python" and the library files in "/usr/lib/python2.6"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
distutils.sysconfig 是“提供对 Python 的访问”的模块低级配置信息”。 get_python_lib 函数特别给出了“通用库安装或依赖于平台的库安装”,具体取决于其参数。
但是,
sys.executable
并未由所述sysconfig
模块公开——它仅在sys
模块中。distutils.sysconfig is the module that "provides access to Python’s low-level configuration information". The get_python_lib function, in particular, gives "the directory for either the general or platform-dependent library installation", depending on its arguments.
However,
sys.executable
is not exposed by saidsysconfig
module -- it's only in thesys
module.您需要 sys 模块:
You want the
sys
module: