プロジェクト

全般

プロフィール

MHI-install » 履歴 » バージョン 17

Yuumi Yoshida, 2024-03-14 11:17

1 1 Yuumi Yoshida
# インストール手順
2
3
## インストールするソフト
4
5 7 Yuumi Yoshida
- Chrome
6 1 Yuumi Yoshida
- VSCode
7
- Git
8
- Ruby
9
- Ruby on Rails
10
- MySQL
11 2 Yuumi Yoshida
12
13
## 手順
14 7 Yuumi Yoshida
15
### Chrome
16
17 16 Yuumi Yoshida
- 既にインストールされていれば、それを使って下さい
18 7 Yuumi Yoshida
- ダウンロード:  https://www.google.co.jp/chrome/
19
- インストール手順: 通常アプリと同様です
20 2 Yuumi Yoshida
21
### VSCode
22
23 16 Yuumi Yoshida
- 既にインストールされていれば、それを使って下さい
24 2 Yuumi Yoshida
- ダウンロード:  https://code.visualstudio.com/docs/?dv=win
25 1 Yuumi Yoshida
- インストール手順: 通常アプリと同様です
26 2 Yuumi Yoshida
- TABサイズを 2 に設定する https://dev.classmethod.jp/articles/change-default-indent-in-vscode/
27 16 Yuumi Yoshida
- メニュー等の日本語化はお勧めしませんが、既に入っている場合はそのままでかまいません
28 1 Yuumi Yoshida
29 2 Yuumi Yoshida
### Git
30
31 16 Yuumi Yoshida
- 既にインストールされていればそれを使って下さい
32 2 Yuumi Yoshida
- ダウンロード: https://gitforwindows.org/
33
- インストール手順: https://qiita.com/manabu-watanabe/items/ecf1b434baf305adaa00 を参考にして下さい
34
    - 多少インストーラーの画面が増えていますが全て **Next** で進んで下さい
35
    - **インストール後の設定** は不用です 
36
37
### Ruby
38
39 13 Yuumi Yoshida
- ダウンロード: https://rubyinstaller.org/downloads/  の **Ruby+Devkit 2.7.5-1 (x64)** をダウンロード
40 2 Yuumi Yoshida
- インストール手順:  https://qiita.com/rubytomato@github/items/6693cc925c1ce99fdd22#rubyのインストール を参考にして下さい
41
     - バージョンは違います
42
     - **RubyInstaller2 画面**の入力は[1,2,3] ではなく [1,3]
43 3 Yuumi Yoshida
44
### Ruby on Rails
45
46 11 Yuumi Yoshida
上記のインストール後に、**Windowsシステムツール** → **コマンドプロンプト** を起動し、以下を実行します
47 3 Yuumi Yoshida
48 17 Yuumi Yoshida
```
49
TODO
50
```
51
52 3 Yuumi Yoshida
#### 1. バージョンの確認
53
54 8 Yuumi Yoshida
バージョンは多少違っても良いです
55
56 3 Yuumi Yoshida
```
57 4 Yuumi Yoshida
> git --version
58
git version 2.29.2.windows.3
59
60
> ruby -v
61 13 Yuumi Yoshida
ruby 2.7.5p203 ...
62 3 Yuumi Yoshida
63 4 Yuumi Yoshida
> bundler -v
64 3 Yuumi Yoshida
Bundler version 2.1.4
65
```
66
67
#### 2.  インストールと確認
68 8 Yuumi Yoshida
69
バージョンは多少違っても良いです
70 3 Yuumi Yoshida
71
```
72
> gem install -N sqlite3
73
74
> gem list sqlite3
75
76
*** LOCAL GEMS ***
77
78
sqlite3 (1.4.2)
79
80
> gem install -N rspec
81
82
> rspec -v
83
RSpec 3.10
84
・・・
85
86 14 Yuumi Yoshida
> gem install -N rails -v 6.1.4.4 
87 3 Yuumi Yoshida
88
> rails -v
89 14 Yuumi Yoshida
Rails 6.1.4.4
90 1 Yuumi Yoshida
91
```
92 4 Yuumi Yoshida
93
### MySQL
94
95 6 Yuumi Yoshida
- 既にインストールされていれば最新版でなくても、それを使って下さい
96 4 Yuumi Yoshida
- ダウンロード手順: https://www.dbonline.jp/mysql/install/index1.html  を参考にして下さい
97 13 Yuumi Yoshida
    - バージョンが変わりました  8.0.15 → 8.0.27
98 4 Yuumi Yoshida
    - ページの内容が多少変わってますが問題ないです
99
- インストール手順: https://www.dbonline.jp/mysql/install/index2.html を参考にして下さい
100
    - License Agreement、High Availability ページが無くなりました
101
    - **重要(インストール手順との違い)** Windows Serviceページは、Configure MySQL Server as a Windows Serviceはチェックしたまま Next して下さい
102
    - Installation Complete ページの表示が多少変わってますが問題ないです
103
    - インストール完了後 MySQL Workbench、MySQL Shell は閉じて下さい
104 5 Yuumi Yoshida
105
MySQLはサービスとして動き続けます。もしMySQLが動いている事によりPCが遅くなるようなら **Windows 管理ツール** → **サービス** でMySQLサービスを止めておいて下さい
106
107
- 参考ページ https://webkaru.net/mysql/windows-service-start-stop/
108
    - MySQLのバージョン、画面の詳細は異なります