Below are the detailed local installation steps:
- environmental preparation: Ensure a Python 3.12 environment, it is recommended to use a virtual environment to avoid dependency conflicts:
python3.12 -m venv .venv
- Get Code: Clone the GitHub repository and go to the directory:
git clone https://github.com/morphik-org/morphik-core.git
cd morphik-core - Dependent Installation: Install the dependency packages after activating the virtual environment:
source .venv/bin/activate (Linux/macOS)
.venvScriptsactivate (Windows)
pip install -r requirements.txt - Starting services: Start local services via scripts:
python quick_setup.py
python start_server.py
caveat::
- Windows systems need to run PowerShell as administrator
- It is recommended to read the README file before using it for the first time.
- The service runs by default on thelocalhost:8000
The program can be accessed through a browser or SDK
This answer comes from the articleMorphik Core: an open source RAG platform for processing multimodal dataThe