2009-10-01から1ヶ月間の記事一覧

Oracle に接続するためにドライバをインストールする

# whereis p5-DBI p5-DBI: /usr/ports/databases/p5-DBI/Makefile # cd /usr/ports/databases/p5-DBI # make fetch-recursive # make install clean # whereis p5-DBD-Oracle # cd ../p5-DBD-Oracle/ # cd /usr/ports/databases/p5-DBI # make fetch-recursi…

Beautiful Soup をインストールする

# whereis py-beautifulsoup py-beautifulsoup: /usr/ports/www/py-beautifulsoup # cd /usr/ports/www/py-beautifulsoup/ # make fetch-recursive # make install clean

FreeBSD で Python から MySQL を使えるようにする

# whereis py-MySQLdb py-MySQLdb: /usr/ports/databases/py-MySQLdb # cd /usr/ports/databases/py-MySQLdb # make fetch-recursive # make install clean # whereis py-sqlobject py-sqlobject: /usr/ports/databases/py-sqlobject # cd /usr/ports/databa…

コミットする時のコメントで日本語を使えるようにする

変更をコミットする際に、日本語でコメントを入力すると「Unicode decode Error」が発生した。 下記のサイトを参考にして、~/.hgrc に文字コードを明示的に指定した。 % vi ~/.hgrc export HGENCODING=utf-8; これで日本語のコメントを入力できるようになっ…