有没有一种方法可以确定是否要使用 distutils 而不是 setuptools 安装软件包?
我可以查看 setup.py 内部,看看它是否是 distutils 包。但在熟悉 python 包管理的过程中,我注意到似乎有不止一种方法可以做到这一点。那么:
如何检查解压的包目录或 setup.py 以了解如何构建它?
编辑:当我说“构建”时,我的意思是它会使用 distutils 或 setuptools,还是分发。我正在使用构建。
I can look inside setup.py I suppose to see if it's a distutils package. But in the process of familiarizing myself with python package management I have noticed that there seems to be more than one way to do it. So:
How can I check an unzipped packages directory or setup.py to see how to build it?
EDIT: When I say 'build' I mean is it going to use distutils or setuptools, or distribute. I am using buildout.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么你需要知道?光是跑步有什么问题吗
?
Why do you need to know? What's wrong with just running
?