aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-03-23 21:59:15 -0600
committerBryson Steck <steck.bryson@gmail.com>2022-03-23 21:59:15 -0600
commitd80feb1da006af7e217c33d451d5c74b2be67180 (patch)
treeab271cc79aa89659f38e8daf16c123bce108b4d6 /doc
parent04746b60589681771c4f6a3ef4fa9fb324ee8b99 (diff)
downloadlset-d80feb1da006af7e217c33d451d5c74b2be67180.tar
lset-d80feb1da006af7e217c33d451d5c74b2be67180.tar.gz
lset-d80feb1da006af7e217c33d451d5c74b2be67180.tar.bz2
added macos instructions
Diffstat (limited to 'doc')
-rw-r--r--doc/MACOS.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/MACOS.md b/doc/MACOS.md
index e69de29..8dc9379 100644
--- a/doc/MACOS.md
+++ b/doc/MACOS.md
@@ -0,0 +1,16 @@
+# macOS Installation
+
+To install `lset` on macOS, you need to make sure that you have the Command Line Tools installed. The easiest way to make sure they are downloaded is to open the Terminal app and run:
+```bash
+% git
+```
+If you have the tools installed, `git` will display a help message. If you don't, a window should appear asking if you would like to install them.
+
+You will also need to install Node.js and npm, both of which can be installed through one package found on the downloads section of the [Node.js Website](https://nodejs.org/en/download/).
+
+Once you have both items installed, you will be able to run the same files (`install.sh` and `run.sh`) as you would on Linux:
+```
+# note: if you use './install.sh' or './run.sh', the read command may not work properly
+$ sh install.sh
+$ sh run.sh
+```