You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -59,12 +60,34 @@ Download and install a [Python 3 version of Miniconda](https://docs.conda.io/en/
59
60
```
60
61
conda install -y -c conda-forge/label/main nodejs
61
62
```
63
+
* Verify node is installed correctly
64
+
65
+
```
66
+
node --version
67
+
```
62
68
63
69
* Install Yarn
64
70
65
71
```
66
72
conda install -y -c conda-forge/label/main yarn
67
73
```
74
+
* Verify yarn is installed correctly
75
+
76
+
```
77
+
yarn --version
78
+
```
79
+
80
+
* Install GNU Make
81
+
82
+
Refer to the following link for installation instructions:
83
+
[GNU Make](https://www.gnu.org/software/make/)
84
+
85
+
To verify the installation, run `make`.
86
+
If you have yet to [set up the repository](#setting-up-your-development-environment), you should see a message like the following:
87
+
```
88
+
make: *** No targets specified and no makefile found. Stop.
89
+
```
90
+
Once the repository is set up, running `make` from that location should display the available tasks that are listed in the [Build & Installation](#build-installation) section below.
0 commit comments