使用 setuptools 仅安装 .pyc(python 编译)

发布于 2024-11-02 15:01:56 字数 106 浏览 1 评论 0原文

我想运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘴硬脾气大 2024-11-09 15:01:56

不能使用 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 command

python 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文