From 6115b7952438a0f24793b26c7b23f228dc53d68f Mon Sep 17 00:00:00 2001 From: Radovan Zvoncek Date: Wed, 6 Mar 2024 14:08:09 +0200 Subject: [PATCH] Fix directory name in offline instalation doc --- docs/Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Installation.md b/docs/Installation.md index 715d8e15..deb8b18a 100644 --- a/docs/Installation.md +++ b/docs/Installation.md @@ -29,7 +29,7 @@ If your Cassandra servers do not have internet access: - on a machine with the same target OS and Python version, clone the cassandra-medusa repo and cd into the root directory - run `POETRY_VIRTUALENVS_IN_PROJECT=true poetry install` to install Medusa's dependencies - run `poetry run pip freeze | grep -v cassandra-medusa > requirements.txt` to identify the dependencies -- run `mkdir -p pip_dependencies && pip download -r requirements.txt -d medusa_dependencies` to download the dependencies into a sub directory +- run `mkdir -p medusa_dependencies && pip download -r requirements.txt -d medusa_dependencies` to download the dependencies into a sub directory - run `tar --exclude=".venv" -zcf medusa.tar.gz .` to compress Medusa together with its dependencies but without Poetry's venv - upload the archive to all Cassandra nodes and decompress it (`mkdir -p cassandra-medusa && tar xf medusa.tar.gz -C cassandra-medusa`) - install Medusa's dependencies using `pip install --no-index --find-links medusa_dependencies -r requirements.txt`