Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.14 KB

installation.rst

File metadata and controls

51 lines (33 loc) · 1.14 KB

Installation

Installing the latest version

from PyPI .. prompt:: bash

pip install valaw

from GitHub .. prompt:: bash

pip install git+https://github.com/Jet612/valaw/releases/latest

Installing a specific version

Note

Some versions on GitHub may have a tag on the end of the version number, for example, 1.2.3-beta. For a list of all the versions on GitHub, see releases.

.. group-tab:: from PyPI .. prompt:: bash

pip install valaw==1.2.3

from GitHub .. prompt:: bash

pip install git+https://github.com/Jet612/valaw/tree/1.2.3

Importing the library

To import the library, use the following code:

import valaw

If you want to import the library as a different name, use:

import valaw as v

Note

You don't have to use 'v', you can use any letter or word you want

Back to top of page<Installation>