skip to Main Content

Trying to install glide via command glide install but unable to

glide install No command ‘glide’ found, did you mean:

glide -h
No command ‘glide’ found, did you mean:
Command ‘glade’ from package ‘glade’ (universe)
glide: command not found

2

Answers


  1. On 16.x, you must add the ppa first. Have you done it yet ?

    sudo add-apt-repository ppa:masterminds/glide && sudo apt-get update
    sudo apt-get install glide
    
    Login or Signup to reply.
  2. On Ubuntu Precise (12.04), Trusty (14.04), Wily (15.10) or Xenial (16.04) you nedd to install it using the PPA:

    sudo add-apt-repository ppa:masterminds/glide && sudo apt-get update
    sudo apt-get install glide
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search