PyZipline/docs/getting-started/installation.md
SeaswimmerTheFsh 3fbae612ff
Some checks failed
Pylint / Pylint (3.12) (push) Failing after 37s
feat(docs): adding more documentation and customization
2023-12-20 13:36:33 -05:00

31 lines
727 B
Markdown

# Installation
/// admonition | This project is in active development.
type: danger
There has not been an official release of PyZipline on PyPi yet, meaning these installation docs don't work.
///
## pip
You can use pip to install PyZipline.
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
```
On macOS and Linux:
``` prolog title="Bash"
python3 -m pip install pyzipline
```
## Poetry
You can also use [Poetry](https://python-poetry.org/) to store your dependencies. Add PyZipline to your `pyproject.toml` file manually, or use this command:
``` prolog title="Command Prompt / Shell"
poetry add pyzipline
```