Setting up PySide/ja: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
AutoSpider (talk | contribs) (Add "cleanup" tag) |
||
Line 1: | Line 1: | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | |||
[[Category:LanguageBindings::PySide]] | [[Category:LanguageBindings::PySide]] | ||
[[Category:LanguageBindings::PySide Japanese]] | [[Category:LanguageBindings::PySide Japanese]] |
Revision as of 16:59, 3 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
日本語 English ["French":http://qt-devnet.developpez.com/tutoriels/pyside/simplissimus/#LIII-A] 한국어
- 注: この記事はPySide_Newbie_Tutorialsの一部になっています
PySideのセットアップ
PySideを始めるには次のプログラムをインストールする必要があります。
- "Qt":http://qt.nokia.com/
- "Python":http://www.python.org/
- "PySide":http://www.pyside.org/
ダウンロードの内容に従って、開発マシンへPySideをインストールします。
PySideが正しくインストールされているかどうか確認するには、Pythonコンソールに次のように入力します。
import PySide
エラーが表示されなければ正常にPySideがインストールされています。QtとPythonによる開発が開始できます。 また、次のように、インストールしたPySideのバージョンを確認できます。
import PySide
print PySide.''version''
1.0.0 のような結果が表示されます。