0
0

More than 1 year has passed since last update.

WEB開発をやり始めてみる(Ruby:Cloud9環境構築)

Last updated at Posted at 2022-10-16

目的

web開発としてRubyの学習を始めてみる。
環境はCloud9で作成しています。

やったこと

### 環境を整えます
$ sudo yum update && sudo yum upgrade
### バージョンを指定します(3.0.2)
$ rvm -v
rvm 1.29.8 (1.29.8) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]

$ rvm get stable
Downloading https://get.rvm.io


$ rvm install ruby-3.0.2
Searching for binary rubies, this might take some time.


$ rvm list
 * ruby-2.6.3 [ x86_64 ]
=> ruby-3.0.2 [ x86_64 ]

$ rvm use 3.0.2
Using /home/ec2-user/.rvm/gems/ruby-3.0.2

$ ruby -v
ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x86_64-linux]
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0