Python

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; これで日本語のコメントを入力できるようになっ…