python并行计算包的安装问题

python并行计算包的安装问题

我在安装python的并行计算的pypar的包是总是程序下面的错误,有知道的帮忙解决一下吧!
www@www-desktop:~/Desktop/pypar_1.9.3/pypar_1.9.3$ python setup.py  install
sh: mpicc: not found
sh: mpicc: not found
sh: mpicc: not found
sh: mpicc: not found

running install
running build
running build_py
running build_ext
building 'pypar.mpiext' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.4 -c mpiext.c -o build/temp.linux-i686-2.4/mpiext.o
gcc: mpiext.c: No such file or directory
gcc: no input files
error: command 'gcc' failed with exit status 1
你确定你当前的运行环境下有MPI吗?比如MPICH, MPICH2, or OpenMPI?若没有需要先安装好,并确保你的环境能够mpirun,这是并行的初始条件。

并行计算环境不是说你拥有多核处理器,加上这个PyPar就可以执行的。请先参考MPICH的安装。