Forked from mberman84/gist:9b3c281ae5e3e92b7e946f6a09787cde
Created
January 14, 2024 08:40
-
-
Save moheshmohan/6bf960a253e43e7e87e769f9c17f3fbe to your computer and use it in GitHub Desktop.
PrivateGPT Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Clone the repo | |
| git clone https://github.com/imartinez/privateGPT | |
| cd privateGPT | |
| # Install Python 3.11 | |
| pyenv install 3.11 | |
| pyenv local 3.11 | |
| # Install dependencies | |
| poetry install --with ui,local | |
| # Download Embedding and LLM models | |
| poetry run python scripts/setup | |
| # (Optional) For Mac with Metal GPU, enable it. Check Installation and Settings section | |
| to know how to enable GPU on other platforms | |
| CMAKE_ARGS="-DLLAMA_METAL=on" pip install --force-reinstall --no-cache-dir llama-cpp-python | |
| # Run the local server | |
| PGPT_PROFILES=local make run | |
| # Note: on Mac with Metal you should see a ggml_metal_add_buffer log, stating GPU is | |
| being used | |
| # Navigate to the UI and try it out! | |
| http://localhost:8001/ |
Author
Author
for activating poetry env
go to dir and then
poetry shell
Author
adding docx2txt
poetry add docx2txt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
to run next time go to folder
eval "$(pyenv init -)"
and then
Run the local server
PGPT_PROFILES=local make run