6

我正在尝试通过 gvm 命令安装 gradle '$ gvm i gradle',但我收到一条离线模式的消息。(任何安装失败并显示以下消息)


➜  ~
➜  ~
➜  ~  gvm i gradle
GVM can't reach the internet so going offline. Re-enable online with:

  $ gvm offline disable

==== BROADCAST =============================================

OFFLINE MODE ENABLED! Some functionality is now disabled.

============================================================
This command is not available in offline mode.
➜  ~
➜  ~
➜  ~  gvm offline disable
Online mode re-enabled!
➜  ~
➜  ~
➜  ~  gvm i gradle       
GVM can't reach the internet so going offline. Re-enable online with:

  $ gvm offline disable

==== BROADCAST =============================================

OFFLINE MODE ENABLED! Some functionality is now disabled.

============================================================
This command is not available in offline mode.

附加信息:代理已配置。



➜  ~
➜  ~
➜  ~  ping gvmtool.net
PING gvmtool.net (192.30.252.154) 56(84) bytes of data.
64 bytes from pages.github.com (192.30.252.154): icmp_seq=1 ttl=50 time=150 ms
64 bytes from pages.github.com (192.30.252.154): icmp_seq=2 ttl=50 time=151 ms
64 bytes from pages.github.com (192.30.252.154): icmp_seq=3 ttl=50 time=159 ms
64 bytes from pages.github.com (192.30.252.154): icmp_seq=4 ttl=50 time=155 ms
64 bytes from pages.github.com (192.30.252.154): icmp_seq=5 ttl=50 time=151 ms
^C
--- gvmtool.net ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4005ms
rtt min/avg/max/mdev = 150.383/153.800/159.585/3.507 ms


4

2 回答 2

12

万一你半年后来这里:gvm没了,现在是“ sdkman! ”。

我需要安装我的所有工具,并且可以删除 ~/.gvm/

于 2015-12-20T10:25:24.273 回答
6

**

编辑

使用sdkman

此解决方案太旧,无法解决任何问题...请将您的GVM升级到SDKMAN

**

访问这个地址(http://cast.gvm.io/broadcast/latest "via cURL")后gvm install,开始安装



➜  ~  curl -v http://cast.gvm.io/broadcast/latest
* Hostname was NOT found in DNS cache
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 3128 (#0)
 GET http://cast.gvm.io/broadcast/latest HTTP/1.1
 User-Agent: curl/7.38.0
 Host: cast.gvm.io
 Accept: */*
 Proxy-Connection: Keep-Alive

 HTTP/1.1 200 OK
 Via: 1.1 10.0.10.78 (McAfee Web Gateway 7.3.2.11.0.17883)
 Date: Tue, 07 Jul 2015 19:41:04 GMT
* Server Apache-Coyote/1.1 is not blacklisted
 Server: Apache-Coyote/1.1
 X-Cache: MISS from 10.0.10.78
 Content-Type: text/plain
 Content-Length: 387
 X-Cf-Requestid: 912e0f56-782d-4df1-5cee-e6a5d4f31386
 Proxy-Connection: Keep-Alive
 X-Application-Context: cast:cloud:0
 Connection: close

==== BROADCAST =================================================================
* 02/07/15: Springboot 1.2.5.RELEASE has been released on GVM. #springboot
* 25/06/15: Gradle 2.5-rc-1 has been released on GVM. #gradle
* 21/06/15: Legacy versions of #groovylang restored on GVM. Thanks @glaforge + @bintray!
* Closing connection 0
================================================================================%



之后,我可以使用 gvm 命令安装任何东西。

参考:https ://github.com/gvmtool/gvm-cli/issues/314

于 2015-07-07T20:02:45.080 回答