MacPorts/python26
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*目次 [#p32e91fd]
#contents
*インストール [#v0c68c1d]
python2.6がMacPortsの最新(2010/07/07)。以下のコマンドでイ...
sudo port install python26
*セットアップ [#k46e6bfb]
python25インストール後に表示されるように、python26をデフ...
#pre{{
sudo port install python_select
sudo python_select python26
}}
*ライブラリ [#s69af6ad]
** setuptoolsのインストール [#r55707f8]
sudo python setup.py install
**Growlを使う [#s6817a9b]
-[[Growl - Source:http://growl.info/source.php]]からGrowl...
-Bindings/pythonに移動し、
sudo python setup.py install
-サンプルを動かす。細かいパラメータの意味がよくわからない...
#pre{{
#!/opt/local/bin/python ...
import Growl
g = Growl.GrowlNotifier(
applicationName='FindNameError', notifications=['Noti...
NotifyTest2'])
g.register()
g.notify(
noteType='NotifyTest1',
title='This is Notify Test1',
description='Python Growl Notify Test1',
sticky=False)
}}
※参考…[[PythonでGrowlを叩く - 西尾泰和のはてなダイアリー:...
**tweepyを使う [#h631b2ee]
Python用のtwitterライブラリ。
***インストール [#pd2d9def]
-[[joshthecoder's tweepy at master - GitHub:http://github...
- setuptoolsを使ってインストール。
sudo python setup.py install
終了行:
*目次 [#p32e91fd]
#contents
*インストール [#v0c68c1d]
python2.6がMacPortsの最新(2010/07/07)。以下のコマンドでイ...
sudo port install python26
*セットアップ [#k46e6bfb]
python25インストール後に表示されるように、python26をデフ...
#pre{{
sudo port install python_select
sudo python_select python26
}}
*ライブラリ [#s69af6ad]
** setuptoolsのインストール [#r55707f8]
sudo python setup.py install
**Growlを使う [#s6817a9b]
-[[Growl - Source:http://growl.info/source.php]]からGrowl...
-Bindings/pythonに移動し、
sudo python setup.py install
-サンプルを動かす。細かいパラメータの意味がよくわからない...
#pre{{
#!/opt/local/bin/python ...
import Growl
g = Growl.GrowlNotifier(
applicationName='FindNameError', notifications=['Noti...
NotifyTest2'])
g.register()
g.notify(
noteType='NotifyTest1',
title='This is Notify Test1',
description='Python Growl Notify Test1',
sticky=False)
}}
※参考…[[PythonでGrowlを叩く - 西尾泰和のはてなダイアリー:...
**tweepyを使う [#h631b2ee]
Python用のtwitterライブラリ。
***インストール [#pd2d9def]
-[[joshthecoder's tweepy at master - GitHub:http://github...
- setuptoolsを使ってインストール。
sudo python setup.py install
ページ名: