change docs

This commit is contained in:
2025-05-04 17:51:19 +04:00
parent 1de99ff181
commit 1091abe3cb
2 changed files with 11 additions and 31 deletions

View File

@@ -7,37 +7,8 @@
```shell
git clone ... project
cd project
```
Создать виртуальное окружение
```shell
python3 -m venv .venv
```
Активировать ыиртуальное окружение
```shell
#win powershell
.venv/Scripts/activate.ps1
# win bash
source
# unix
source .venv/bin/activate
```
Установить зависимости
```shell
pip install -r requirements.txt
```
Запустить скрипт
```shell
python3 HookJeeves.py
poetry install
poetry run python main.py
```
Результат выполнения будет отображен в консоли и в файле `result.log`

9
lab2/main.py Normal file
View File

@@ -0,0 +1,9 @@
import HookJeeves
def main():
HookJeeves.main()
if __name__ == "__main__":
main()