をインストールしたモジュールのバージョンを取得します:は、どのように私はPythonでモジュールのプログラム的
required_modules = ['nose', 'coverage', 'webunit', 'MySQLdb', 'pgdb', 'memcache']
とプログラム:
required_programs = ['psql', 'mysql', 'gpsd', 'sox', 'memcached']
何かのように:
# Report on the versions of programs installed for module in required_modules: try: print module.__version__ except: exit
私がそれを理解するので、これを行うための単純で完璧な方法はありません。しかし、[この前の質問への回答](http://stackoverflow.com/questions/710609/checking-python-module-version-at-runtime)が役に立ちます。 – dumbmatter