Skip to content

Commit 13f5c69

Browse files
Created installation reference
1 parent 9861b41 commit 13f5c69

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

Installation_Reference.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
1. Install Python
2+
3+
Most users can go [here](https://www.python.org/downloads/) to download and install `Python 3.8`.
4+
5+
__[Homebrew](https://brew.sh/) on macOS:__
6+
```
7+
brew install python
8+
```
9+
> This will download the most recent python release. This series should be well supported in the future but if you need Python 3.8 go [here](https://www.python.org/downloads/) and find the section titled `Looking for a specific release?`
10+
11+
2. Install Node.js
12+
13+
Most users will go [here](https://nodejs.org/en/) to download and install `node.js`.
14+
15+
16+
__[Homebrew](https://brew.sh/) on macOS:__
17+
```
18+
brew install node
19+
```
20+
> This will download the most recent Node.js release. If you need another version of node here go [here](https://nodejs.org/en/) or consider using the [Node Version Manager (nvm)](https://github.com/nvm-sh/nvm)
21+
22+
3. Install [Yarn](yarnpkg.com) (optional)
23+
Yarn is an excellent alternative to using `npm` to install Node.js packages. Yarn caches packages so it speeds up the installs.
24+
25+
Assuming you have Node.js installed, you should have `npm` as well. Verify `npm` is installed by:
26+
27+
```
28+
npm -v
29+
```
30+
31+
If not error occurs, you can install yarn with:
32+
```
33+
npm install -g yarn
34+
```
35+
> If, for some unforseen reason, this fails, try to download yarn [here](https://classic.yarnpkg.com/en/docs/install/)
36+

0 commit comments

Comments
 (0)