Setting up PySide/ja: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Change category "LanguageBindings::PySide Japanese" -> "PySide")
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}


[[Category:LanguageBindings::PySide]]
[[Category:PySide]]
[[Category:LanguageBindings::PySide Japanese]]
[[Category:PySide]]


'''日本語''' [[Setting_up_PySide|English]] ["French":http://qt-devnet.developpez.com/tutoriels/pyside/simplissimus/#LIII-A] [[Setting_up_PySide_Korean|한국어]]
'''日本語''' [[Setting_up_PySide|English]] [[http://qt-devnet.developpez.com/tutoriels/pyside/simplissimus/#LIII-A French]] [[Setting_up_PySide_Korean|한국어]]


* '''注:''' この記事は[[PySide_Newbie_Tutorials]]の一部になっています
* '''注:''' この記事は[[PySide_Newbie_Tutorials]]の一部になっています
Line 12: Line 12:
PySideを始めるには次のプログラムをインストールする必要があります。
PySideを始めるには次のプログラムをインストールする必要があります。


* "Qt":http://qt.nokia.com/
* [http://qt.nokia.com/ Qt]
* "Python":http://www.python.org/
* [http://www.python.org/ Python]
* "PySide":http://www.pyside.org/
* [http://www.pyside.org/ PySide]


[[PySideDownloadsJapanese|ダウンロード]]の内容に従って、開発マシンへPySideをインストールします。
[[PySideDownloadsJapanese|ダウンロード]]の内容に従って、開発マシンへPySideをインストールします。

Latest revision as of 04:54, 5 June 2016

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] 한국어

PySideのセットアップ

PySideを始めるには次のプログラムをインストールする必要があります。

ダウンロードの内容に従って、開発マシンへPySideをインストールします。

PySideが正しくインストールされているかどうか確認するには、Pythonコンソールに次のように入力します。

import PySide

エラーが表示されなければ正常にPySideがインストールされています。QtとPythonによる開発が開始できます。 また、次のように、インストールしたPySideのバージョンを確認できます。

import PySide
print PySide.''version''

1.0.0 のような結果が表示されます。