fix(docs): fixed some cmds being wrong
Some checks failed
Pylint / Pylint (3.12) (push) Failing after 35s
Some checks failed
Pylint / Pylint (3.12) (push) Failing after 35s
This commit is contained in:
parent
6cc8a2dd0b
commit
1cbe895c3e
1 changed files with 10 additions and 9 deletions
|
@ -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
|
|
||||||
```
|
|
||||||
|
|
Loading…
Reference in a new issue