From 40acb1f2ec11a980713b29089fb00ccc8d57cfa7 Mon Sep 17 00:00:00 2001 From: binary-husky <96192199+binary-husky@users.noreply.github.com> Date: Mon, 21 Oct 2024 18:00:23 +0800 Subject: [PATCH] feat: support arm architecture and modify installation.md --- docs/installation.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 9d9644c..2d29d47 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -15,8 +15,9 @@ ```bash sudo docker build --network=host -t memoryscope . ``` + If you are using arm-based computers, modify command above into: `sudo docker build -f DockerfileArm --network=host -t memoryscope .` -3. Launch Docker container (ARM architecture not yet supported) +3. Launch Docker container ```bash sudo docker run -it --rm --net=host memoryscope ``` @@ -42,7 +43,7 @@ OPENAI_API_KEY: "sk-0000000000" ``` -3. Run `docker-compose run memory_scope_main` to build and launch the memory-scope cli interface. (ARM architecture not yet supported) +3. Run `docker-compose run memory_scope_main` to build and launch the memory-scope cli interface. (For ARM architecture, you should edit `docker-compose.yml`, changing `image: ghcr.io/modelscope/memoryscope:main` to `image: ghcr.io/modelscope/memoryscope_arm:main`) ## III. Install from PyPI