この記事では、主に Python で .py ファイルを exe 実行可能ファイルにパッケージ化する方法について説明します。この記事は非常に詳細に説明されているため、必要な方は以下を参照してください。 。
はじめに
最近、簡単なクローラー Python プログラムをいくつか作成したので、その効果を確認するためのウィンドウを作成したいと思いました。
まずWindowsについては、これまであまり触れたことがないので、まずはQtを使って簡単なUIを作ってみることにします。ここでは、例として以前の Sinanews クローラー スクリプトを使用して、その日の Sina ヘッドラインを取得するウィンドウを作成します。
py ファイルを生成したら、ここではいくつかのコンポーネントをウィンドウにドラッグして、取得した sinanews を表示します。
まず、私の設定を投稿します
公式ダウンロード:
Py3.3用のPyQt5-5.2.1 (Python3.3をインストールした後、対応するPyQtをインストールします。これにより、Pythonのインストールディレクトリが見つかります。いいえ)インストールディレクトリを変更する必要があります)
ローカルダウンロード:
Py3.3用のPyQt5-5.2.1 (Python3.3をインストールした後、対応するPyQtをインストールします。これにより、Pythonのインストールディレクトリが見つかります。
Python3.3 はデフォルトでは pip をインストールしません。get-pip.py をダウンロードして実行する必要があります。インストールが成功したことを示すメッセージが表示されます。
次のステップは、必要なコンポーネントをインストールすることです。インストールを簡単にするために、まず環境変数に pip を追加します。
これで、pip コマンドを使用してコンポーネントをインストールできるようになりました。
最初にsina_news.pyを投稿し、どのようなコンポーネントが必要なのかを確認してください。
import requests from bs4 import BeautifulSoup res = requests.get('http://news.sina.com.cn/china/') res.encoding = 'utf-8' soup = BeautifulSoup(res.text,'html.parser') for news in soup.select('.news-item'): if len(news.select('h2')) > 0: h2 = news.select('h2')[0].text a = news.select('a')[0]['href'] time = news.select('.time')[0].text print(time,h2,a)
インポートリクエストが見つかったので、BeautifulSoupをインポートするので、最初にこれらのコンポーネントをインストールしましょう
pip install requests pip install BeautifulSoup4
このコードをウィンドウコードに貼り付けた後、
x.py
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'x.ui' # # Created by: PyQt5 UI code generator 5.8.1 # # WARNING! All changes made in this file will be lost! import sys import requests from PyQt5 import QtCore, QtGui, QtWidgets from bs4 import BeautifulSoup class Ui_x(object): def getNews(): res = requests.get('http://news.sina.com.cn/china/') res.encoding = 'utf-8' soup = BeautifulSoup(res.text,'html.parser') title = [] for news in soup.select('.news-item'): if len(news.select('h2')) > 0: h2 = news.select('h2')[0].text title.append(h2) a = news.select('a')[0]['href'] time = news.select('.time')[0].text return '\n'.join(title) def setupUi(self, x): x.setObjectName("x") x.resize(841, 749) self.timeEdit = QtWidgets.QTimeEdit(x) self.timeEdit.setGeometry(QtCore.QRect(310, 10, 141, 31)) self.timeEdit.setObjectName("timeEdit") self.dateEdit = QtWidgets.QDateEdit(x) self.dateEdit.setGeometry(QtCore.QRect(100, 10, 191, 31)) self.dateEdit.setObjectName("dateEdit") self.textBrowser = QtWidgets.QTextBrowser(x) self.textBrowser.setGeometry(QtCore.QRect(60, 80, 701, 641)) self.textBrowser.setObjectName("textBrowser") self.retranslateUi(x) QtCore.QMetaObject.connectSlotsByName(x) def retranslateUi(self, x): _translate = QtCore.QCoreApplication.translate x.setWindowTitle(_translate("x", "x")) if __name__ == '__main__': app = QtWidgets.QApplication(sys.argv) Form = QtWidgets.QWidget() ui = Ui_x() ui.setupUi(Form) Form.show() ui.textBrowser.setText(Ui_x.getNews()) sys.exit(app.exec_())
すべてがうまくいったら、Pythonを使用してx.pyを実行します。ウィンドウが表示されるはずです。
以下はパッケージ化プロセスです。作者はここで Pyinstaller を使用します。インストールされていない場合は、インストールする必要があります:
pip install pyinstaller
インストールが完了したら、x.py が存在するディレクトリへの cmd パスを cd します。
パッケージングコマンド:
Pyinstaller -w x.py
このとき、x.py内にdistフォルダーが生成され、パッケージ化されたx.exeはこのフォルダーの下にあります。 x.exe をダブルクリックしてエフェクトを表示します:
もちろん、上で日付を選択したり、指定した日付の見出しを取得したりするなど、多くの改良点があります。
考えられる問題:
パッケージ化されたプログラムを開くと実行できず、次のメッセージが表示されます:
ImportError: No module named 'queue' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "test.py", line 2, in <module> File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module exec(bytecode, module.__dict__) File "site-packages\requests\__init__.py", line 63, in <module> File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module exec(bytecode, module.__dict__) File "site-packages\requests\utils.py", line 24, in <module> File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module exec(bytecode, module.__dict__) File "site-packages\requests\_internal_utils.py", line 11, in <module> File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module exec(bytecode, module.__dict__) File "site-packages\requests\compat.py", line 11, in <module> File "c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 389, in load_module exec(bytecode, module.__dict__) File "site-packages\requests\packages\__init__.py", line 29, in <module> ImportError: No module named 'urllib3' Failed to execute script test</module></module></module></module></module></module>
もちろん、これはバージョンの不一致が原因で発生しました:
My Pyinstaller For 3.2
では、リクエストのバージョンを下げる必要があります。Requests2.10 は正常にパッケージ化できますが、2.11 はパッケージ化できません。この問題を解決するために使用される request2.10 をここに掲載します。この問題が将来修正されるかどうかはわかりません。昨日、この虫の夢を見ました。今朝起きたら、興奮して我慢できなかったので解決しました。このプロセス中に遭遇する質問が役立つことを願っています。
以上がPython で .py ファイルを exe 実行ファイルにパッケージ化するサンプル コードの詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。