Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a bunch of installation issues specfically for MacOS #17

Merged
merged 4 commits into from
May 28, 2023
Merged
Show file tree
Hide file tree
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
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