Skip to content

Commit 0c3f94c

Browse files
authored
Merge pull request #149 from joe-dw/master
Adding https links as well as SSH
2 parents ba4db6c + cbe70fe commit 0c3f94c

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ On a Mac, you can get the required software by installing Homebrew, and running:
5050
brew install git autoconf automake curl GMP graphviz libtool
5151
```
5252

53-
Now, to install GAP and PackageManager, open a terminal window and enter the following:
53+
Now, to install GAP and PackageManager, open a terminal window and enter the following, choosing either the SSH or HTTPS git links:
5454
```bash
55+
#SSH links
5556
cd ~
5657
git clone git@github.com:gap-system/gap.git
5758
cd gap
@@ -68,6 +69,25 @@ cd ~/gap
6869
./gap --bare
6970
```
7071

72+
```bash
73+
#HTTPS links
74+
cd ~
75+
git clone https://github.com/gap-system/gap
76+
cd gap
77+
./autogen.sh
78+
./configure
79+
make
80+
cd ~/
81+
mkdir .gap
82+
cd .gap
83+
mkdir pkg
84+
cd pkg
85+
git clone https://github.com/gap-packages/PackageManager
86+
cd ~/gap
87+
./gap --bare
88+
```
89+
90+
7191
In the GAP window that opens, enter the following:
7292
```gap
7393
LoadPackage("PackageManager");

0 commit comments

Comments
 (0)