16

I don't know how to install files to Ubuntu. Kindly explain to me how to install Groovy.

Zanna
  • 72,312
Ant's
  • 3,930

2 Answers2

18

The fast way is to install from the command line. Type the following command.

sudo apt-get install groovy

You can also use Software Center from Ubuntu->Software Center to install Groovy. Type Groovy in the search box and after selecting the first option, click Install button.

enter image description here

Zanna
  • 72,312
Chakra
  • 3,542
5

To install through command-line, make sure that your package list is updated and then install the package:

sudo apt-get update
sudo apt-get install groovy

Reference:

https://www.howtoinstall.co/en/ubuntu/trusty/universe/groovy/

Eduardo
  • 211