使用 setuptools 仅安装 .pyc(python 编译)
我想运行 python setup.py install (安装脚本使用 setuptools),并且我只想将 .pyc 文件包含在生成的 Egg 或目录中。所有 .py 文件不得存在。我该怎么做?
I want to run python setup.py install
(the setup script uses setuptools), and I want only the .pyc files to be included in the resulting egg or directory. all .py files must not be present. How can I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不能使用
install
,但可以运行以下命令python setup.py bdist_egg --exclude-source-files
并使用 easy_install 在 dist 中安装生成的 Egg
easy_install dist/eggname.egg
请注意 根据手册
install
只不过是easy_install使用的快捷方式。not with
install
, but a possibility is to run the following commandpython setup.py bdist_egg --exclude-source-files
and install the resulting egg in dist with easy_install
easy_install dist/eggname.egg
Note that according to the manual
install
is nothing but a shortcut to easy_install use.