我正在尝试在 ubuntu 服务器安装 (7.04 fiesty fawn) 上安装 MPICH2。这是为 Beowulf 集群准备的。
由于两个原因,我至今仍无法安装它。
1)root账户下:
apt-get install mpich2
得出以下结果:
Package mpich2 is not available, but is referred to by another package
E: Package mpich2 has no installation candidate
2)从 tar 包安装时,使用 cd /mirror 中的以下指令
mkidr mpich2
tar xvf mpich2_1.3.1.orig.tar.gz (creates directory /mirror/mpich2-1.3.1)
cd mpich2-1.3.1
./configure --prefix=/mirror/mpich2
make
sudo make install
一切顺利,直到 make 时我被告知:
make: *** No targets specified and no makefile found. Stop.
我的桌子上有一个小凹痕,形状很奇怪,像我的额头。你认为我该怎么做才能安装这个该死的软件?
答案1
回复:(1)-
- 你确定你已经配置了适当的 apt 存储库吗?(我不确定它在哪里,但是这是 Natty 的 repos 列表)。
- 您是否已
apt-get update
确保您的包裹清单是最新的? - 您是否尝试过
apt-cache search MPI
防止包被重命名?
回复:(2)-
参见上面的评论。