From 1cbe895c3effec14d54aa34195bf2d025755671d Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 20 Dec 2023 14:31:31 -0500 Subject: [PATCH] fix(docs): fixed some cmds being wrong --- docs/getting-started/installation.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 21b9384..6b41124 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -24,26 +24,27 @@ The command to use differs slightly depending on what OS/Distro you use. On Windows: ``` prolog title="Command Prompt" -py -m pip install -U pyzipline=3.7.7 +py -m pip install pyzipline=3.7.7 ``` On macOS and Linux: ``` prolog title="Bash" -python3 -m pip install -U pyzipline=3.7.7 +python3 -m pip install pyzipline=3.7.7 ``` ## Poetry -You can also use [Poetry](https://python-poetry.org/) to store your dependencies. Add PyZipline to your `pyproject.toml` file manually. +You can also use [Poetry](https://python-poetry.org/) to store your dependencies. +Use the following command to install PyZipline: + +``` prolog title="Command Prompt / Shell" +poetry add pyzipline=3.7.7 +``` + +Or, you can add PyZipline to your `pyproject.toml` file manually: ``` toml title="pyproject.toml" [tool.poetry.dependencies] pyzipline = "3.7.7" ``` - -Or, you can use this command: - -``` prolog title="Command Prompt / Shell" -poetry add pyzipline=3.7.7 -```