Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ On a Mac, you can get the required software by installing Homebrew, and running:
brew install git autoconf automake curl GMP graphviz libtool
```

Now, to install GAP and PackageManager, open a terminal window and enter the following:
Now, to install GAP and PackageManager, open a terminal window and enter the following, choosing either the SSH or HTTPS git links:
```bash
#SSH links
cd ~
git clone git@github.com:gap-system/gap.git
cd gap
Expand All @@ -68,6 +69,25 @@ cd ~/gap
./gap --bare
```

```bash
#HTTPS links
cd ~
git clone https://github.com/gap-system/gap
cd gap
./autogen.sh
./configure
make
cd ~/
mkdir .gap
cd .gap
mkdir pkg
cd pkg
git clone https://github.com/gap-packages/PackageManager
cd ~/gap
./gap --bare
```


In the GAP window that opens, enter the following:
```gap
LoadPackage("PackageManager");
Expand Down