File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed
Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 22title : はじめての Node.js
33---
44
5+ import installCommandLineDeveloperToolsVideo from " ./install-command-line-developer-tools.mp4" ;
56import installNvmInWslVideo from " ./install-nvm-in-wsl.mp4" ;
67import installNvmInMacVideo from " ./install-nvm-in-mac.mp4" ;
78import openFolderInWslVideo from " ./open-folder-in-wsl.mp4" ;
@@ -13,6 +14,14 @@ import debuggingVideo from "./debugging.mp4";
1314
1415Node.js をインストールする方法は様々ですが、現在は [ nvm] ( https://github.com/nvm-sh/nvm ) と呼ばれるツールが用いられることが多いようです。
1516
17+ macOS の場合は、先に次のコマンドを実行してコマンドラインデベロッパツールをインストールする必要があります。
18+
19+ ``` shell
20+ xcode-select --install
21+ ```
22+
23+ <video src = { installCommandLineDeveloperToolsVideo } controls />
24+
1625まずは、[ nvm のウェブサイトの ` Install & Update Script ` セクション] ( https://github.com/nvm-sh/nvm#install--update-script ) に書かれているスクリプトを実行しましょう。2024 年 5 月現在では、次の通りです。
1726
1827``` shell
Original file line number Diff line number Diff line change 22title : Git と GitHub のセットアップ
33---
44
5- import installCommandLineDeveloperToolsVideo from " ./install-command-line-developer-tools.mp4" ;
65import registerGitHubVideo from " ./register-github.mp4" ;
76import setupGitVideo from " ./setup-git.mp4" ;
87import addSshKeyVideo from " ./add-ssh-key.mp4" ;
@@ -15,17 +14,7 @@ import addSshKeyVideo from "./add-ssh-key.mp4";
1514
1615## Git のインストール
1716
18- <Tabs groupId = " os" >
19- <TabItem value = " mac" label = " macOS" >
20- macOS の場合は、コマンドラインデベロッパツールが必要な場合があります。
21-
22- <video src = { installCommandLineDeveloperToolsVideo } controls muted />
23-
24- </TabItem >
25- <TabItem value = " win" label = " Windows (WSL)" >
26- WSL を利用する場合は Git は標準搭載なので追加でインストールする必要はありません。
27- </TabItem >
28- </Tabs >
17+ macOS と WSL のいずれも、Git は標準搭載なので追加でインストールする必要はありません。
2918
3019## Git の拡張機能のインストール
3120
You can’t perform that action at this time.
0 commit comments