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

时间:2011-04-20 12:57:46

标签: python setuptools

我想运行python setup.py install(安装脚本使用setuptools),我只想将.pyc文件包含在生成的egg或目录中。所有.py文件不得出现。我怎么能这样做?

1 个答案:

答案 0 :(得分:20)

不是install,但可能会运行以下命令

python setup.py bdist_egg --exclude-source-files

并使用easy_install

安装生成的蛋

easy_install dist/eggname.egg

请注意,according to the manual install只不过是easy_install使用的快捷方式。