O console Groovy não será carregado no Windows 7 x64

1

Eu nunca trabalhei com o Groovy antes.

Instalei o executável e o JDK mais recente no site do Java.

Eu configurei as variáveis ENV do meu sistema em JAVA_HOME para C:\Program Files\Java\jdk1.8.0_77 e GROOVY_HOME para C:\Program Files (x86)\Groovy\Groovy-2.4.6\bin .

O console não carrega, então tentei reiniciar meu computador. Sem dados. Eu tentei executar GroovyConsole.exe diretamente da pasta groovy, bem como tentar o arquivo GroovyConsole.bat.

Não funciona e todas as opções acima são as únicas soluções que encontrei on-line.

    
por user584002 17.04.2016 / 16:42

2 respostas

0

O console Groovy não carrega

I set my system environment JAVA_HOME to C:\Program Files\Java\jdk1.8.0_77 and GROOVY_HOME to C:\Program Files (x86)\Groovy\Groovy-2.4.6\bin

Sua variável GROOVY_HOME está incorreta. Ele deve apontar para a raiz da instalação do Groovy (que é um backup direto de bin ).

No seu caso, o valor correto é GROOVY_HOME C:\Program Files (x86)\Groovy\Groovy-2.4.6

Você também pode considerar adicionar %GROOVY_HOME%\bin ao seu caminho de sistema.

Configurando seu ambiente Groovy

  1. Unzip the groovy archive to some logical place on your hard drive, I have mine in C:\dev\groovy-2.0.5

  2. Set the GROOVY_HOME environment variables. On Windows, follow these steps:

    • Optionally add a new System variable with the name GROOVY_HOME and the value of the directory groovy was installed in (mine is C:\dev\groovy-2.0.5)
    • Start a command prompt, and type "set" and hit return to see that your environment variables were set correctly.
  3. Optionally add %GROOVY_HOME%\bin to your system path

  4. Try opening groovyConsole.bat by double clicking on the icon in the bin directory of the Groovy distribution.

    • If it doesn't work, open a command prompt, and change to the bin directory and run it from there to see what the error message is.

    • If it is complaining about not finding parts of Groovy, then setting GROOVY_HOME may help

Fonte Tutorial 1 - Primeiros passos

Leitura Adicional

por 18.04.2016 / 12:30
0

Se você definir JAVA_HOME antes , instalar o Groovy e usar o instalador do Windows, e o instalador manipulará tudo corretamente. Se você tiver definido JAVA_HOME após instalar o Groovy, eu recomendaria uma reinstalação.

    
por 24.06.2016 / 00:49