lab2 #1

Merged
ns.potapov merged 16 commits from lab2 into main 2025-05-05 11:42:52 +04:00
2 changed files with 11 additions and 31 deletions
Showing only changes of commit 1091abe3cb - Show all commits

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()