Last active
January 6, 2022 15:24
-
-
Save sartimo/a7e08ea2e8c0f315fbe728bdd3fe53a4 to your computer and use it in GitHub Desktop.
Installing Rubinius 2 via RVM on WSL 1.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fetch rvm | |
gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB | |
\curl -sSL https://get.rvm.io | bash -s stable | |
# add package source for libssl-dev1.0 | |
sudo nano /etc/apt/sources.list | |
add deb http://security.ubuntu.com/ubuntu bionic-security main | |
sudo apt update && apt-cache policy libssl1.0-dev | |
sudo apt-get install libssl1.0-dev | |
sudo add-apt-repository universe | |
sudo apt update | |
sudo apt install libfmt-dev | |
wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - | |
rvm install rbx-2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment