プロジェクト

全般

プロフィール

InstallRuby » 履歴 » バージョン 4

Yuumi Yoshida, 2018-05-08 23:24

1 1 Yuumi Yoshida
# 「非技術者むけプログラミング入門」インストール手順
2
3 3 Yuumi Yoshida
更新日: 2018-05-08
4 1 Yuumi Yoshida
5
## Ruby
6
7
1. ブラウザーで https://rubyinstaller.org/downloads をアクセス
8
2. 左側の **WITHOUT DEVKIT** の下の Ruby 2.5.1-1 (x64)  をクリックしダウンロードする
9
3. ダウンロードされた rubyinstaller-2.5.1-1-x64.exe ファイルをダブルクリックしインストラーを起動
10
4. インストラーが起動したら I accept the License を選択し、Nextボタンをクリック
11
5. 次の画面(タイトル Installation Destination and Optional Tasks)が表示されたら、以下をチェックし Installボタンをクリック
12
    * Add Ruby executables to your PATH
13
    * Use UTF-8 as default external encoding.
14
6. Run 'ridk install' to setup .... をチェックし、Finshボタンをクリック
15
7. コマンドプロンプトが表示されるので 1 を入力し Return
16
17 2 Yuumi Yoshida
![](ruby_install.gif)
18
19 4 Yuumi Yoshida
### Bundler
20
21
コマンドプロンプトを起動し、以下のコマンドをタイプして下さい。
22
23
```
24
gem install bundler -N
25
```
26
27
28 1 Yuumi Yoshida
## Atomエディター
29
30
1. ブラウザーで https://git-scm.com/downloads をアクセス
31
2. Downloadボタンをクリックしダウンロードする
32
3. ダウンロードされた AtomSetup-x64.exe ファイルをダブルクリックしインストラーを起動
33
4. インストラーが終了するまで待つ
34
5. Atomエディターが起動し、右上に Register as Default atom:// URI handler? というダイアログが表示されたら Yes をクリック
35
36
37 3 Yuumi Yoshida
![](atom_install.gif)
38
39 1 Yuumi Yoshida
## Git
40
41
1. ブラウザーで https://git-scm.com/downloads をアクセス
42
2. Windowsボタンをクリックしダウンロードする
43
3. ダウンロードされた Git-2.17.0-64-bit.exe ファイルをダブルクリックしインストラーを起動
44
4. インストラーが起動したら Nextボタンをクリック
45
5. 次の画面(タイトル Select Destination Location)が表示されたら、そのままで Nextボタンをクリック
46
5. 同じような画面がさらに7回表示されれますが、そのままで Nextボタンをクリックを繰り返します
47
7. 次の画面(タイトル Configuring extra options)が表示されたら、そのままで Installボタンをクリック
48
6. 次の画面(タイトル Completing the Git Setup Wizard)が表示されるまで待ち、全てのチェックを外し、Finishボタンをクリック
49
50 3 Yuumi Yoshida
![](git_install.gif)
51 1 Yuumi Yoshida
52
## Heroku CLI
53
54
1. ブラウザーで https://devcenter.heroku.com/articles/heroku-cli をアクセス
55
2. Windowsの 64-bit installerボタンをクリックしダウンロードする
56
3. ダウンロードされた heroku-x64.exe ファイルをダブルクリックしインストラーを起動
57
4. インストラーが起動したら、そのままで Nextボタンをクリック
58
5. 次の画面が表示されたら、そのままで Installボタンをクリック
59
6. 次の画面(タイトル Installation Complete)が表示されたら、Closeボタンをクリック
60 3 Yuumi Yoshida
61
![](heroku_install.gif)