diff --git a/README.md b/README.md index 8b232e4..f42a21d 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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");