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 -```