mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
1.6 KiB
1.6 KiB
Installing MemoryScope
I. Install with docker [Recommended]
-
Clone the repository and edit settings
# clone project git clone https://... cd memoryscope # edit configuration, e.g. add api keys vim memoryscope/core/config/demo_config.yaml -
Build Docker image
sudo docker build --network=host -t memoryscope . -
Launch Docker container
sudo docker run -it --rm --net=host memoryscope
II. Install with docker compose [Recommended]
-
Clone the repository and edit settings
# clone project git clone https://... cd memoryscope # edit configuration, e.g. add api keys vim memoryscope/core/config/demo_config.yaml -
Edit
docker-compose.ymlto change environment variable.DASHSCOPE_API_KEY: "sk-0000000000" -
Run
docker-compose upto build and launch the memory-scope cli interface.
III. Install in native system [Linux only]
-
Clone the repository and edit settings
# clone project git clone https://... cd memoryscope # edit configuration, e.g. add api keys vim memoryscope/core/config/demo_config.yaml -
Install
poetry install -
Run Elasticsearch service, refer to elasticsearch documents.
-
Launch memoryscope, also refer to cli documents
memoryscope --config_path=memoryscope/core/config/demo_config.yaml