Getting Rugged::NetworkError on #connect

前端 未结 2 1688
忘了有多久
忘了有多久 2021-01-28 04:08

I tried to implement fetch and this exception was raised:

Rugged::NetworkError: This transport isn\'t implemented. Sorry

I am able

相关标签:
2条回答
  • 2021-01-28 04:52

    libgit2 uses openssl for HTTPS and libssh2 for ssh. You need the development packages for them in order for the embedded libgit2 to build with support for those transports.

    0 讨论(0)
  • 2021-01-28 05:06

    Just to follow up on this, you need to install these:

    openssl libssh2 libssl-dev pkg-config
    

    Then you need to reinstall libgit2(rebuild), because the original shared libraries do not know that you've installed the new packages. See http://www.pygit2.org/install.html for installing.

    0 讨论(0)
提交回复
热议问题