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

Latest commit

 

History

History
36 lines (21 loc) · 877 Bytes

installation.rst

File metadata and controls

36 lines (21 loc) · 877 Bytes

Installation

j5 is really easy to install.

You will need the following installed on your machine:

  • Python 3.6 or higher
  • python3-pip (for package management)
  • pipenv (optional)

pipenv (recommended)

The recommended installation method is to use pipenv, an excellent tool that combines a package manager with virtual environments.

Simply run: pipenv install j5

If you want Zoloto CV support: pipenv install j5[zoloto-vision]

You can now import j5 into your libraries. Awesome!

pip

You can use pip to install j5. You will either need to install it system-wide or manage a virtual environment.

Simply run: pip install j5

You can now import j5 into your libraries. Awesome!