3
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

chocolateyでruby on rails環境を構築

Posted at

windowsでrails環境を整えようとした際にchocolateyという便利なパッケージ管理ツールを見つけたので、chocolateyでrails環境を構築するためのコマンドを書き置きします。
msys2まわりがネットで引っかかりにくかったので今回投稿しましたが、マニュアルにはちゃんと載っているので大したことはしてないです。

コマンド

chocolatey導入済みから

# ruby v2.4.2.2
cinst ruby

# msys2
cinst msys2 --params "/NoUpdate" # 非アップデート状態でインストール
refreshenv                       # or cmd/powershellの再起動
ridk install 2 3                 # ruby installer2 の 2 3 項目を実行

# rails関連
gem install bundle
gem install rails

参考サイト

Chocolateyを使った環境構築の時のメモ
RubyInstaller2でRuby2.4 with Rails5の環境を作る~Nokogiriでエラー~
chocolatey - MSYS2

3
9
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
3
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?