我正在使用zef安装带有zef install Twitter的Twitter模块。
我得到以下错误:
Enabled fetching backends [git path curl wget] don't understand git://github.com/raku-community-modules/Twitter You may need to configure one of the following backends, or install its underlying software - [pswebrequest]
我在谷歌上搜索了“pswebrequest”,但没有找到任何值得注意的东西。
我已经尝试安装HTTP::Tinyish,其中一个依赖项,以检查我的zef安装是否正常工作,这很好。
有什么关于如何解决这个问题的建议吗?
发布于 2021-02-11 22:36:01
如果source-url是git存储库,那么它应该以.git结尾,因为后端使用扩展来确定如何/需要什么来获取/提取各种类型的打包发行版。
您可以打开一个拉取请求,将.git添加到source-url中,也可以通过以下方式手动解决此问题:
zef install https://github.com/raku-community-modules/Twitter.git
https://stackoverflow.com/questions/66155121
复制相似问题