実行環境
- Windows 7 SP1 64bit
- PostgreSQL 9.5 RC1(詳細
: 19 日の記事) - コマンドプロンプトの替わりにConEmu 151208を使用
過去記事と関連リンク
- ポータブルな
Python と PostgreSQL で、PL/Python3 を使う準備(2015.5.19) - PostgreSQL 9.4.5
文書 - PL/Python - Python 手続き言語(日本語) - PostgreSQL 9.4.5 Documentation - PL/Python(英語)
- Dependency Walker 2.2
- Python Releases for Windows
- @IT - .MSI
ファイルを解凍して内部のファイルを取り出す(msiexec 編) - Python
» 3.3.6 Documentation - urllib
先頭に挙げた
PL/Python に使う Python のバージョンを確認
最近のただし5
↓ 今回の結果。5
最小限でポータブルな Windows 版 Python 3.3 を準備
5- Python Releases for Windows → Python 3.3.5 - 2014-03-09 → Download Windows x86-64 MSI installer
このまま実行するとポータブルでなくなるので、関連リンクに挙げた
start /wait msiexec /a python-3.3.5.amd64.msi targetdir="R:\TMP\3.3.5" /qn
コマンド実行時に
Python 単体のテスト
本来は、PostgreSQL続いて簡単なテスト。urllib.request
>>> from urllib.request import urlopen >>> urlopen('http://kenpg.bitbucket.org/').read()b'\r\n\r\n\r\n\r\n\r\n\r\n\r\n'
使うモジュールやパッケージによっては環境変数の追加が必要かもしれませんが、とりあえず