Skip to content

Commit

Permalink
updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nbingham1 committed Dec 4, 2024
1 parent 9cd6bdc commit d47084c
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,13 @@ cd loom
git submodule update --init --recursive
```

Build and Install
Build
```
make linux
```

Install
```
sudo dpkg -i lm-linux.deb
```

Expand Down Expand Up @@ -124,7 +128,12 @@ git submodule update --init --recursive
Build
```
make windows
# this creates lm-windows.zip
```

Install
```
unzip lm-windows.zip -d "C:\\Program Files (x86)"
export PATH="C:\\Program Files (x86)\\Loom\\bin:$PATH"
```

### Mac OS
Expand All @@ -144,7 +153,16 @@ git submodule update --init --recursive
Build
```
make macos
# this creates lm-macos
```

Install
```
tar -xzvf lm-macos.tar.gz
cp lm-macos/bin/lm /usr/local/bin
cp lm-macos/share/tech /usr/local/share
chmod +x /usr/local/bin/lm
chown -R root:staff /usr/local/share/tech
chmod -R ug+rw /usr/local/share/tech
```

### Run Tests
Expand Down

0 comments on commit d47084c

Please sign in to comment.