fix(docs): fixed some cmds being wrong
Some checks failed
Pylint / Pylint (3.12) (push) Failing after 35s

This commit is contained in:
Seaswimmer 2023-12-20 14:31:31 -05:00
parent 6cc8a2dd0b
commit 1cbe895c3e
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -24,26 +24,27 @@ The command to use differs slightly depending on what OS/Distro you use.
On Windows: On Windows:
``` prolog title="Command Prompt" ``` 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: On macOS and Linux:
``` prolog title="Bash" ``` prolog title="Bash"
python3 -m pip install -U pyzipline=3.7.7 python3 -m pip install pyzipline=3.7.7
``` ```
## Poetry ## 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" ``` toml title="pyproject.toml"
[tool.poetry.dependencies] [tool.poetry.dependencies]
pyzipline = "3.7.7" pyzipline = "3.7.7"
``` ```
Or, you can use this command:
``` prolog title="Command Prompt / Shell"
poetry add pyzipline=3.7.7
```