centos 6.3安装Haskell Platform随笔

系统安装不在阐述,配置好网络可以连接外网;然后开始安装:

问题1:yum install使用不了   Exception:Another app is currently holding the yum lock;

解决方案:

    参考:http://www.2cto.com/os/201201/117795.html

    #ps -ef|grep upate

    找到进程,强制kill掉,之后删除运行进程文件

    #rm -f /var/run/yum.pid

安装过程:

1:下载最新的ghc和Haskell Platform:

      链接地址:http://www.haskell.org/platform/

安装ghc没什么问题;

安装Haskell Platform时, 需要安装gmp包:

      gmp包 下载地址:http://gmplib.org/

configure 时 还可能报:configure: error: The zlib C library is required.

      zlib包 下载地址:http://zlib.net/

configure 是 还可能报:configure: error: The OpenGL C library is required.

      执行操作yum安装:

      #yum -y install mesa *

      #yum -y install freeglut*

最后,make install即可;

posted on 2013-01-21 17:44  aquariusm  阅读(499)  评论(0编辑  收藏  举报

导航