Skip to content

Commit

Permalink
Merge pull request #17 from joemccann/main
Browse files Browse the repository at this point in the history
Fixed a bunch of installation issues specfically for MacOS
  • Loading branch information
Anil-matcha committed May 28, 2023
2 parents 09c4399 + ba898b1 commit b6c3e9b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.DS_STORE

# Models
models/
models/*.bin

# Local Chroma db
.chroma/
Expand Down
25 changes: 24 additions & 1 deletion server/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
# privateGPT Server
# privateGPT Server

A Flask application to manage your privateGPT instance.

## MacOS Installation Notes

Ensure you run:

```sh
pip install urllib3==1.26.6
```

To fix the lingering OpenSSL issue.

Now, you can execute:

```sh
python privateGPT.py
```

The server should be running on Port 5000.

If port 5000 is in use, on your Mac go to System Settings > Airdrop and Handoff
and disable the Airplay Receiver as it runs on port 5000.
Empty file added server/models/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ python-magic==0.4.27
python-pptx==0.6.21
pytz==2023.3
pytz-deprecation-shim==0.1.0.post0
pywin32==306
pywin32==306; sys_platform == 'win32'
PyYAML==6.0
red-black-tree-mod==1.20
regex==2023.5.5
Expand Down

0 comments on commit b6c3e9b

Please sign in to comment.