How to drop your own library on the net (Reference: https://qiita.com/yuma-ito-bd/items/00f89ca0c04909c7c467)
sudo apt install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm5 libgdbm-dev
Then I couldn't find the compatibility of the library that was finished development and failed to install, so I installed rbenv with apt.
sudo apt update
2.install
sudo apt install rbenv
Then
rbenv -v # rbenv 1.1.1
Rbenv entered safely
Now install ruby
CONFIGURE_OPTS='--disable-install-rdoc' rbenv install 2.6.3
Recommended Posts