Tip
You may need to run your terminal as an administrator or use sudo to install packages globally.
This guide will teach you how to install tailwind for use in your project in 2 different ways:
To install using pip you need a few things:
Tip
You may need to run your terminal as an administrator or use sudo to install packages globally.
To install run the following command in you terminal:
pip install tailwindallThat will install the package under the alias tailwindall which is the full version of Tailwind.
To test that it installed correctly run the following command in a python shell:
import tailwindallTo install from source you will need a few things:
Tip
You may need to run your terminal as an administrator or use sudo to install packages globally.
To install run the following commands in your terminal:
git clone https://github.com/Superbro525Alt/Tailwind.gitcd Tailwindpip install -r requirements.txtpoetry installThat will install the package under the alias tailwindall which is the full version of Tailwind.
To test that it installed correctly run the following command in a python shell:
import tailwindall