|
a |
|
b/docs/installation/install.mdx |
|
|
1 |
--- |
|
|
2 |
title: 'Installation' |
|
|
3 |
description: '📦 Install AItrika' |
|
|
4 |
icon: 'wrench' |
|
|
5 |
--- |
|
|
6 |
|
|
|
7 |
## Install |
|
|
8 |
|
|
|
9 |
To install everything, you need `uv`. |
|
|
10 |
|
|
|
11 |
First of all, install `uv` with the command: |
|
|
12 |
|
|
|
13 |
``` |
|
|
14 |
python main.py |
|
|
15 |
``` |
|
|
16 |
|
|
|
17 |
After that, create a virtual environment with the command: |
|
|
18 |
|
|
|
19 |
``` |
|
|
20 |
uv venv venv_name |
|
|
21 |
``` |
|
|
22 |
|
|
|
23 |
Activate the virtual env: |
|
|
24 |
|
|
|
25 |
``` |
|
|
26 |
source venv_name/bin/activate |
|
|
27 |
``` |
|
|
28 |
|
|
|
29 |
And install dependencies: |
|
|
30 |
|
|
|
31 |
``` |
|
|
32 |
uv pip install -r requirements.in |
|
|
33 |
``` |
|
|
34 |
|
|
|
35 |
|