如何找到 Guile 包?
How to find a Guile package?
我在网上找到了一个代码示例,它通过使用 os process 模块解决了我当前的一个问题。
(use-modules (os process))
(http://gnu-guile.7481.n7.nabble.com/getting-pipes-going-td14625.html#a14627)
太棒了,只是我没有那个模块,也不知道从哪里以及如何获得它。
你能帮忙吗?
(我在 Debian 上使用 Guile 2.0。)
您要查找的 module/library 名为 "Guile Library" (guile-lib) 并且是 introduced here (nongnu.org)
函数run-with-pipe
是documented here and the library may be downloaded here。
我在网上找到了一个代码示例,它通过使用 os process 模块解决了我当前的一个问题。
(use-modules (os process))
(http://gnu-guile.7481.n7.nabble.com/getting-pipes-going-td14625.html#a14627)
太棒了,只是我没有那个模块,也不知道从哪里以及如何获得它。
你能帮忙吗?
(我在 Debian 上使用 Guile 2.0。)
您要查找的 module/library 名为 "Guile Library" (guile-lib) 并且是 introduced here (nongnu.org)
函数run-with-pipe
是documented here and the library may be downloaded here。