Installation
How to Install Lution
Section titled “How to Install Lution”There are two ways to install Lution. The Easy Install is recommended for most users. If that doesn’t work, or if you’re built diff and prefer to do it manually, follow the manual install steps below. Alternatively, you can watch Fraid31J’s video showcasing how to install this.
Easy Install (Recommended)
Section titled “Easy Install (Recommended)”This method uses a script to automate setup.
-
Prerequisites Make sure
git
is installed. Check with:git --versionIf not installed, search up how to install git in your distro.
-
Clone and Run In terminal, run:
git clone https://github.com/Wookhq/Lution.gitcd Lution/src./run.shThe script sets up everything and launches Lution. If Streamlit asks for email, just press Enter.
Manual Installation
Section titled “Manual Installation”-
Prerequisites Install
git
,python3
, andpython3-venv
. For example, I’ll use Debian/Ubuntu:sudo apt update && sudo apt install git python3-venv -
Clone the Repo
git clone https://github.com/Lutionhq/Lution.gitcd Lution -
Create & Activate Virtual Environment
python3 -m venv venvsource venv/bin/activateYour prompt should now show
(venv)
. -
Install Dependencies
cd src/Lutionpip install -r requirements.txt -
Run Lution
streamlit run main.pyAgain, skip the email prompt by pressing Enter.
To run Lution later:
cd Lution/src/Lutionsource ../../venv/bin/activatestreamlit run main.py