Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 768 Bytes

installation.md

File metadata and controls

32 lines (21 loc) · 768 Bytes

Installation

Pyot requires Python 3.7 or newer.

Get the latest version of Python at https://www.python.org/downloads/ or with your operating system’s package manager.

Pip

Installing an official release with pip:

pip install pyot

Github

Installing from source code master, it may include hotfixes and unstable code:

pip install git+https://github.com/paaksing/Pyot.git

Extras

Depending on the need, installation of extras may be needed:

pip install pyot[diskcache]     # installs: ["diskcache>=5.1", "asgiref>=3.2"]
pip install pyot[redis]         # installs: ["aioredis<2.0"]
pip install pyot[mongodb]       # installs: ["motor>=2.3"]
pip install pyot[test]          # installs: ["typeguard>=2.13"]