Skip to content

Commit

Permalink
Fix directory name in offline instalation doc
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvoncek committed Mar 6, 2024
1 parent 295ae9a commit 6115b79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 6115b79

Please # to comment.