Skip to content

Commit

Permalink
Replace git clone SSH URI with HTTPS URL
Browse files Browse the repository at this point in the history
Running `git clone --recurse-submodules git@github.com:nomic-ai/gpt4all.git`
returns `Permission denied (publickey)` as shown below:
```
git clone --recurse-submodules git@github.com:nomic-ai/gpt4all.git
Cloning into gpt4all...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
```

This change replaces `git@github.com:nomic-ai/gpt4all.git` with
`https://github.com/nomic-ai/gpt4all.git` which runs without permission issues.

resolves #8, resolves #49
  • Loading branch information
kevinbazira authored and manyoso committed Sep 20, 2023
1 parent 0d1edaf commit 17cb4a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt4all-bindings/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pip install gpt4all
1. Setup `llmodel`

```
git clone --recurse-submodules git@github.com:nomic-ai/gpt4all.git
git clone --recurse-submodules https://github.com/nomic-ai/gpt4all.git
cd gpt4all/gpt4all-backend/
mkdir build
cd build
Expand Down

0 comments on commit 17cb4a8

Please sign in to comment.