Haskell环境搭建(windows)
Posted 娄石整
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Haskell环境搭建(windows)相关的知识,希望对你有一定的参考价值。
1、官网上(https://www.haskell.org/platform/windows.html)下载Haskell Platform,最新版本为8.2.1,只支持64位,有个core版和full版,full版包含了库,就下full版试试
2、cmd下输入 "cabal user-config init",可以看到配置文件的路径,找到配置文件,添加输入
extra-prog-path: C:\\Program Files\\Haskell Platform\\8.2.1\\msys\\usr\\bin extra-lib-dirs: C:\\Program Files\\Haskell Platform\\8.2.1\\mingw\\lib extra-include-dirs: C:\\Program Files\\Haskell Platform\\8.2.1\\mingw\\include
注意安装目录换了的,后面要跟着换
3、cmd下输入ghci
4、Start WinGHCi from the Start menu and have fun!
以上是关于Haskell环境搭建(windows)的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段