You will get like this message:
The popen2 module is deprecated.the md5 module is deprecated; use hashlib instead from md5
please refer to this article : http://trac.mcs.anl.gov/projects/mpich2/attachment/ticket/362/mpd_deprecated_workaround.patch
or
edit mpdlib.py
add
*************************************************************
import warnings
warnings.filterwarnings('ignore', '.*the md5 module is deprecated.*', DeprecationWarning)
warnings.filterwarnings('ignore', '.*the popen2 module is deprecated.*', DeprecationWarning)
****************************************************************