私はcx_freezeをインストールしました。これは、.exeをビルドするための魅力的なように機能しますが、Windows 7を使用しているMac OS X用のPythonプログラムの実行可能ファイルを作成したいのですが、cx_freezeや他のアプリケーション。Windowsでcx_freezeを使ってMac OS X用のPythonコードをビルドするには?
私は簡単な方法はありません.exeの
from cx_Freeze import setup, Executable
build_exe_options = {
"packages": [],
'includes': ['lxml.etree', 'lxml._elementpath', 'gzip'],
'excludes' : ['boto.compat.sys',
'boto.compat._sre',
'boto.compat._json',
'boto.compat._locale',
'boto.compat._struct',
'collections.abc',
'boto.compat.array'],
"include_files": []}
setup(
name = "xyz",
version = "0.1",
description = "",
author = "Dengar",
options = {"build_exe": build_exe_options},
executables = [Executable("xyz.py")]
)
あなたは、Mac OS Xでは、Windows 7上の仮想マシンをインストールしてください必要がありますOS Xをインストールして、このターゲットOS用にビルドすることができます。 –