5
A
回答
11
對於目前在Stackage包,
$ stack ghci --package unix-time
這會給你一個REPL在它裝載在封裝unix-time
:
Run from outside a project, using implicit global project config
Using resolver: lts-6.14 from implicit global project's config file: /home/sibi/.stack/global-project/stack.yaml
GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help
λ> import Data.UnixTime
λ> :t getUnixTime
getUnixTime :: IO UnixTime
對於多個軟件包:
$ stack ghci --package unix-time --package download
Run from outside a project, using implicit global project config
Using resolver: lts-6.14 from implicit global project's config file: /home/sibi/.stack/global-project/stack.yaml
tagsoup-0.13.10: using precompiled package
xml-1.3.14: using precompiled package
time-locale-compat-0.1.1.3: using precompiled package
feed-0.3.11.1: download
feed-0.3.11.1: configure
feed-0.3.11.1: build
feed-0.3.11.1: copy/register
download-0.3.2.4: download
download-0.3.2.4: configure
download-0.3.2.4: build
download-0.3.2.4: copy/register
Completed 5 action(s).
Configuring GHCi with the following packages:
GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help
Ok, modules loaded: none.
λ> import Network.Download
λ>
相關問題
- 1. ghci中/堆棧和包裝
- 2. 使用堆棧編輯「.ghci」文件
- 3. ghci顯示執行堆棧
- 4. 如何卸載安裝了堆棧的Haskell軟件包?
- 5. 在Emacs堆棧ghci中不能在命令行加載界面文件,但是`棧build`確實
- 6. 運行軟件包更新後堆棧級別太深錯誤
- 7. 正在加載軟件包
- 8. 棧ghci不加載本地模塊,但ghci確實
- 9. 如何使用Delicious API將鏈接添加到堆棧/軟件包?
- 10. 堆棧在java中使用堆棧
- 11. R Studio - 重新加載軟件包
- 12. 如何傳遞堆棧ghci RTS選項?
- 13. 無法在R中加載軟件包
- 14. 使用作曲家重新加載所有軟件包
- 15. 使用React Native和Redux重新加載Reducer時堆棧溢出
- 16. 加載rLingo軟件包R
- 17. 在R中加載軟件包時使用引號
- 18. 在C++中使用堆棧
- 19. 棧GHCI沒有通過堆棧導入的模塊
- 20. 「堆棧」是什麼意思,而不是在推/彈出,但在「軟件堆棧」
- 21. 什麼是「圖形軟件堆棧」?
- 22. Android軟件堆棧如何工作?
- 23. 堆棧跟蹤錯誤彙總軟件
- 24. 未能用pycharm加載軟件包
- 25. 如何查看堆棧安裝的軟件包版本?
- 26. Laravel 5.1軟件包開發 - 在開發中加載軟件包依賴關係
- 27. 用於將日誌文件加載到cassandra中的堆棧
- 28. 從堆棧(LinkedList)使用C#彈出不更新堆棧
- 29. 使用堆棧添加到Postfix中Java
- 30. 重新編譯一個龐大的軟件堆棧,如mozilla
其實你不需要指定'--package'選項。你可以只寫'stack ghci lens mtl' – Shersh
@Shersh謝謝,更新了答案。 – Sibi
我不能在不指定'--package'選項的情況下加載'matrix'包。我必須像'stack ghci --package matrix' fyi一樣正確寫入。 – Redu