2024-09-18 09:55:25 -04:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
This section will guide you through the installation process of PyFlowery.
|
|
|
|
|
|
|
|
## pip
|
|
|
|
|
|
|
|
You can use pip to install PyFlowery.
|
|
|
|
The command to use differs slightly depending on what operating system you use.
|
|
|
|
|
|
|
|
On Windows:
|
|
|
|
|
|
|
|
``` prolog title="Command Prompt"
|
|
|
|
py -m pip install pyflowery
|
|
|
|
```
|
|
|
|
|
|
|
|
On macOS and Linux:
|
|
|
|
|
|
|
|
``` prolog title="Bash"
|
|
|
|
python3 -m pip install pyflowery
|
|
|
|
```
|
|
|
|
|
2024-10-10 15:42:35 -04:00
|
|
|
## uv
|
2024-09-18 09:55:25 -04:00
|
|
|
|
2024-10-10 15:43:41 -04:00
|
|
|
You can also use [uv](https://astral.sh/uv) to store your dependencies.
|
2024-09-18 09:55:25 -04:00
|
|
|
Use the following command to install PyFlowery:
|
|
|
|
|
|
|
|
``` prolog title="Command Prompt / Shell"
|
2024-10-10 15:42:35 -04:00
|
|
|
uv add pyflowery
|
2024-09-18 09:55:25 -04:00
|
|
|
```
|