pythonをアプリケーションとしてパッケージ化
2051 ワード
pythonサードパーティライブラリインストールツールpipのインストール:
pip: A tool for installing and managing Python packages.
サードパーティ製パッケージを使用するには、pythonのバージョンが2.7でなければなりません.
https://pypi.python.org/pypi/setuptools#downloads
https://pip.pypa.io/en/latest/installing.html#python-os-support
pyinstallerを使用してアプリケーションをパッケージ化するには、次の手順に従います.
pipを使用してpyinstallerをインストールするには:
pip: A tool for installing and managing Python packages.
サードパーティ製パッケージを使用するには、pythonのバージョンが2.7でなければなりません.
https://pypi.python.org/pypi/setuptools#downloads
python ez_setup.py
https://pip.pypa.io/en/latest/installing.html#python-os-support
python get-pip.py
pyinstallerを使用してアプリケーションをパッケージ化するには、次の手順に従います.
pipを使用してpyinstallerをインストールするには:
pip install pyinstaller
使用
pyinstaller -windows sharesRead.py
pyinstaller用法帮助
pyinstaller -h
使用py2app打包(只支持mac os系统,windows使用py2exe):
py2app: sudo pip install py2app
:
1、 :
cd ProjectDirctory
2、 setup.py :
py2applet --make-setup MyApplication.py
3、 :
rm -rf build dist
4、 mac :
python setup.py py2app
もう1つの方法は、PythonのC++インタフェースを使用して、C++のアプリケーションをパッケージ化するC++のプロジェクトを構築することです.これはC++とPythonの相互呼び出しに関連しています.5、 dist
C/C++拡張Pythonを使用
PythonとC/C++モジュールの相互呼び出し