web-dev-qa-db-fra.com

Erreur lors de l'installation de Ruby sur un sous-système Windows pour Linux

J'essaie d'installer Jekyll en suivant tutoriel Jekyll sur Windows . Il y a une forte à installer Ruby à partir de BrightBox référentiel. J'avais déclenché la commande suivante:

Sudo apt-add-repository ppa:brightbox/Ruby-ng
Sudo apt-get update
Sudo apt-get install Ruby2.4 Ruby2.4-dev build-essential dh-autoreconf

La dernière commande a généré l'erreur suivante:

Sudo apt-get install Ruby2.4 Ruby2.4-dev build-essential dh-autoreconf
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package Ruby2.4
E: Couldn't find any package by glob 'Ruby2.4'
E: Couldn't find any package by regex 'Ruby2.4'
E: Unable to locate package Ruby2.4-dev
E: Couldn't find any package by glob 'Ruby2.4-dev'
E: Couldn't find any package by regex 'Ruby2.4-dev' 

Comment puis-je résoudre ce problème?

1
Kiran Shahi

J'avais installé Ubuntu 18.04 et il n'y avait pas de paquet Ruby2.4 Ruby2.4-dev pour Ubuntu 18.04 à packages.ubuntu.com , j'ai donc mis à jour ma commande comme suit pour installer Ruby2.5 Ruby2.5-dev

Sudo apt-get install Ruby2.5 Ruby2.5-dev build-essential dh-autoreconf
0
Kiran Shahi